home *** CD-ROM | disk | FTP | other *** search
/ Trading on the Edge / Trading On The Edge - CD-ROM Toolkit (Wayzata Technology)(2031)(1994).bin / mac / Mac_Files / Vendor Demos / HiQ / HiQErrors < prev   
Text File  |  1992-04-28  |  77KB  |  2,596 lines

  1. **********   HiQ Errors   **********
  2. **********   Begin file sydInternal:HiQs:HiQv1.0.1d4:Errors:Errors_Doug   **********
  3.  
  4.  
  5. *******************************************************************************
  6. *
  7. *        Copyright (c) 1991, Bimillennium Corporation.  All rights reserved.
  8. *
  9. *        File:            Errors_Doug
  10. *
  11. *        Purpose:        HiQ errors file.
  12. *    
  13. *        Notes:        
  14. *    
  15. *        Created:        3/19/91
  16. *
  17. *        Who                    Initials    Involvement
  18. *        -----------------    --------    -----------------------------------------------
  19. *        D. M. Park            DMP        Original Code
  20. *    
  21. *    
  22. *                    Modification History (Latest modification first)
  23. *    
  24. *        Date         Who    Version    Comments
  25. *        -----------    -----    --------    -----------------------------------------------
  26. *              2/7/92        DMP    <20>        Added message for when a failure occurs that
  27. *                                                doesn't have a standard HiQ error message.
  28. *             1/27/92        SEG    <19>        (SPRbc00837) Updated error message for
  29. *                                                E_NOT_A_FUNCTION.
  30. *             1/12/92        DMP    <18>        Added error message for negative dimension.
  31. *             1/12/92        DMP       <17+>    Adding error message for negative dimension.
  32. *             1/10/92        DMP    <17>        Put in check for negative or zero dimension.
  33. *             1/10/92        DMP       <16+>    Adding error message for zero or negative
  34. *                                                dimension.
  35. *              1/9/92        DMP    <16>        Added error message for
  36. *                                                E_INVALID_TYPE_FOR_COMPLEX_EXPRESSION
  37. *              1/9/92        DMP       <15+>    Adding error message for
  38. *                                                E_INVALID_TYPE_FOR_COMPLEX_EXPRESSION
  39. *              1/7/92        DMP    <15>        Reworded an error message.
  40. *              1/7/92        DMP       <14+>    Rewording an error message.
  41. *              1/3/92        DMP    <14>        Added new error message.
  42. *              1/3/92        DMP       <13+>    Adding new error message.
  43. *            11/20/91        DMP    <13>        Adding a message.
  44. *            11/13/91        DMP       <12+>    Adding a message.
  45. *             11/1/91        DMP       <11+>    Merging changes.
  46. *            10/17/91        DMP       <10+>    Adding an error message that is guaranteed to
  47. *                                                further confuse and frustrate the users of
  48. *                                                HiQ.
  49. *            10/16/91        DMP    <9+>        Adding E_ERROR_IN_BIF
  50. *            10/15/91        DMP    <8+>        Fixing the line number error.
  51. *            10/10/91        DMP    <7+>        Adding error message.
  52. *             10/4/91        DMP    <6+>        Fixing some typos.
  53. *             9/18/91        MMF    <5+>        Adding E_RELEASE_GET_WRITE_ACCESS
  54. *             8/26/91        DMP    <4+>        Adding some new messages for attribute locks.
  55. *             7/14/91        DMP    <3+>        Adding Grapher error message.
  56. *             7/10/91        DMP     <3>        Added a new Grapher error.
  57. *             7/10/91        DMP    <2+>        Adding a new Grapher error.
  58. *         3/19/91        DMP    <3+>        Adding new messages.
  59. *        06 Feb 91    SEG                Renamed from Errors<option-8>Doug for 
  60. *                                            portability, because most other platforms 
  61. *                                            don't have the Mac option characters on their 
  62. *                                            keyboards
  63. *
  64. *        Keywords:    Portable, Standard Errors
  65. *
  66. ******************************************************************************
  67. *
  68. * The following are common errors.
  69. *
  70.  
  71.    0 E_NO_ERROR
  72. No error.
  73.    1 E_USER_INTERRUPT
  74. Computation was interrupted by user.
  75.    2 E_MEMORY_ALLOCATION
  76. Not enough memory to complete operation.
  77.    3 E_CANT_OPEN_FILE
  78. STRING
  79. File %s cannot be opened.
  80. *
  81. * These are errors that the virtual machine can generate.
  82. *
  83.  
  84. 1001 E_ASSIGN_TO_TEMPORARY_SYMBOL
  85. An attempt was made to assign a value to a temporary symbol.
  86.  
  87. 1002 E_ASSIGN_TO_LOCKED_SYMBOL
  88. STRING
  89. An attempt was made to assign a value to locked symbol %s.
  90.  
  91. 1003 E_PARAMETER_MISMATCH
  92. STRING INT16 INT16
  93. Wrong number of arguments were input to function %s.  %s were input expected %s.
  94.  
  95. 1004 E_UNDEFINED_FUNCTION
  96. INT16
  97. Function code %s is not a built in function.
  98.  
  99. 1005 E_NOT_A_FUNCTION
  100. STRING STRING
  101. An attempt was made to call symbol %s as a function.  You may need to recompile 
  102. the script in which %s is defined.
  103.  
  104. 1006 E_STACK_NOT_EMPTY
  105. An internal stack in the HiQ-Script virtual machine was not empty when it
  106. should have been.
  107.  
  108. 1007 E_STACK_OVERFLOW
  109. An internal stack in the HiQ-Script virtual machine has overflowed it's top.
  110. Memory has been corrupted.  If you can you should save your work and then
  111. reboot.
  112.  
  113. 1008 E_STACK_UNDERFLOW
  114. An internal stack in the HiQ-Script virtual machine has unerflowed it's bottom.
  115. Memory may have been corrupted.  If you can you should save your work and then
  116. reboot.
  117.  
  118. 1009 E_NOT_A_REAL_BIG_RESULT
  119. STRING
  120. Function %s returned a value which was not a real number value.
  121.  
  122. 1010 E_FUNCTION_NOT_INSTALLED
  123. A function was not installed by the "install_f1" routine.
  124.  
  125. 1011 E_UNDEFINED_NORM
  126. An undefined norm instruction was encountered.
  127.  
  128. 1012 E_ILLEGAL_SUBSCRIPT
  129. TYPE
  130. An attempt was made to take a subscript of a data item of type %s.  It was not
  131. a vector, matrix, or string.
  132.  
  133. 1013 E_NOT_A_ONE_ARGUMENT_FUNCTION
  134. STRING INT16
  135. Function %s had %s arguments when 1 argument was expected.
  136.  
  137. 1015 E_UNSUPPORTED_TYPE
  138. STRING TYPE INT16
  139. Function %s does not support type %s for argument %s.
  140.  
  141. 1016 E_ILLEGAL_TYPE
  142. TYPE
  143. Type %s not a legal type.
  144.  
  145. 1017 E_ILLEGAL_CAST
  146. TYPE TYPE
  147. An attempt was made to cast a value from type %s to %s.  This type of cast is
  148. not supported.
  149.  
  150. 1018 E_NOT_BOTH_STRINGS
  151. TYPE TYPE
  152. An operation was attempted that required two strings.  Operand 1 is of type %s
  153. and operand 2 is of type %s.
  154.  
  155. 1019 E_UNDEFINED_OPERATION
  156. Unsupported operation.  Operation undefined for the data types used.
  157.  
  158. 1020 E_ERROR_IN_SUPRESCRIPT
  159. STRING INT32 STRING
  160. In HiQ-Script %s at Line %s while executing HiQ-Script function %s.
  161.  
  162. 1021 E_SUBSCRIPT_RANGE
  163. The subscript or subscript range requested contains rows or columns outside of 
  164. the existing subscript range or a subscript less than 1 was requested.
  165.  
  166. 1022 E_NOT_ATTRIBUTE
  167. Call to take attribute routine with a symbol that was not an attribute.
  168.  
  169. 1023 E_CANT_GET_DIMENSION
  170. Attempt to get row or column information from a data type that doesn't have 
  171. rows or doesn't have columns.
  172.  
  173. 1024 E_UNSUPPORTED_FEATURE
  174. An attempt was made to use an unimplemented feature.
  175.  
  176. 1025    E_NOT_COMPLEX
  177. An attempt was made to take the real or imaginary part of a symbol that was not
  178. a complex scalar.
  179.  
  180. 1026 E_CANT_SET_DIMENSION
  181. Attempt to set row or column information for a data type that doesn't have rows or
  182. doesn't have columns.
  183.  
  184. 1027 E_TYPE_LOCKED
  185. STRING
  186. Symbol %s has it's type locked.  Type cannot be changed on this 
  187. symbol until the type is unlocked.
  188.  
  189. 1028 E_PROPERTIES_LOCKED
  190. STRING
  191. Symbol %s has it's locks locked.  You can't set any attribute lock when
  192. the locks are locked.
  193.  
  194. 1029 E_UNDEFINED_CONVERSION
  195. Unsupported conversion.  Conversion undefined for the data types used.
  196.  
  197. 1030 E_INVALID_SCOPE
  198. There was apparantly a compilation error.  This is most likely a bug in the
  199. compiler and should be reported.  When reporting this error make reference to
  200. the code E_INVALID_SCOPE.
  201.  
  202. 1031 E_INVALID_OP_CODE
  203. There was apparantly a compilation error.  This is most likely a bug in the
  204. compiler and should be reported.  When reporting this error make reference to
  205. the code E_INVALID_OP_CODE.
  206.  
  207. 1032 E_INVALID_RANGE_CODE
  208. There was apparantly a compilation error.  This is most likely a bug in the
  209. compiler and should be reported.  When reporting this error make reference to
  210. the code E_INVALID_RANGE_CODE.
  211.  
  212. 1033 E_NOT_INTEGER_POWER
  213. An attempt was made to take a vector or matrix to something other than an
  214. integer power.
  215.  
  216. 1034 E_BAD_VM_INSTRUCTION_FILE
  217. An attempt was made to read instructions from a file that is either empty or
  218. does not contain valid virtual machine instructions.
  219.  
  220. 1035 E_DATA_LOCKED
  221. STRING
  222. Symbol %s has it's data locked.  You can't make assignments, set
  223. real or imaginary parts of complex numbers or set the dimensions of vectors
  224. or matrices it's data is unlocked.
  225.  
  226. 1036 E_VECTOR_VECTOR_DIVISION
  227. Illegal operation!  Attempt to divide two vectors.
  228.  
  229. 1037 E_MATRIX_VECTOR_DIVISION
  230. Illegal operation!  Attempt to divide a matrix by a vector.
  231.  
  232. 1038 E_SYMBOL_NOT_IN_TABLE
  233. Internal error!  Symbol should have been in symbol table but was not.
  234.  
  235. 1039 E_BAD_JUMP_INSTRUCTION
  236. There was apparantly a compilation error.  This is most likely a bug in the
  237. compiler and should be reported.  When reporting this error make reference to
  238. the code E_BAD_JUMP_INSTRUCTION.
  239.  
  240. 1040 E_INVALID_LOOP_START
  241. Invalid start in for loop.  Must be an integer or real scalar.
  242.  
  243. 1041 E_INVALID_LOOP_FINISH
  244. Invalid finish in for loop.  Must be an integer or real scalar.
  245.  
  246. 1042 E_INVALID_LOOP_STEP
  247. Invalid step size in for loop.  Must be an integer or real scalar.
  248.  
  249. 1043 E_INVALID_LOOP_INDEX 
  250. There was apparantly a compilation error.  This is most likely a bug in the
  251. compiler and should be reported.  When reporting this error make reference to
  252. the code E_INVALID_LOOP_INDEX.
  253.  
  254. 1044 E_ZERO_STEP_IN_FOR_LOOP
  255. A zero step size was input into a for loop.  If you want a loop that repeats
  256. forever then use the "repeat forever ... end repeat" syntax.
  257.  
  258. 1045 E_NEGATIVE_NUMBER_OF_ITERATIONS
  259. The step size put into the loop has a sign that is inconsistent with the loop
  260. start and finish values.
  261.  
  262. 1046 E_BAD_SYMBOL_ADDRESS
  263. There was apparently an error in the virtual machine.  When reporting this
  264. error make reference to the code E_BAD_SYMBOL_ADDRESS.
  265.  
  266. 1047 E_BAD_SYMBOL_INDEX_REFERENCE
  267. There was apparantly a compilation error.  This is most likely a bug in the
  268. compiler and should be reported.  When reporting this error make reference to
  269. the code E_BAD_SYMBOL_INDEX_REFERENCE.
  270.  
  271. 1048 E_R_I_DIMENSION_MISMATCH
  272. The dimensions on a left hand side 'r or 'i assignment must be the same as the
  273. vector or matrix on the right hand side.
  274.  
  275. 1049 E_INVALID_ATTRIBUTE_LOCK
  276. The specified lock does not exist.
  277.  
  278. 1050 E_NAME_LOCKED
  279. STRING
  280. The symbol %s cannot have it's name changed because the name lock is locked.
  281.  
  282. 1051 E_DIM_LOCKED
  283. STRING
  284. The symbol %s cannot have it's dimensions changed because the dimension lock 
  285. is locked.
  286.  
  287. 1052 E_DELETE_LOCKED
  288. STRING
  289. The symbol %s cannot be deleted because the delete lock is locked.
  290.  
  291. 1053 E_NOT_A_DIMENSIONED_SYMBOL
  292. STRING
  293. The symbol %s cannot have it's dimensions changed because it is not a vector
  294. or matrix.
  295.  
  296. 1054 E_NOT_A_PERSISTENT_SYMBOL
  297. STRING
  298. The symbol %s is not persistent so it cannot be saved to disk.
  299.  
  300. 1055 E_NOT_A_PROJECT_SYMBOL
  301. STRING
  302. The symbol %s is not a project symbol.
  303.  
  304. 1056 E_NOT_A_UNIQUE_NAME
  305. STRING STRING
  306. The symbol %s cannot be renamed to %s because a symbol of the same name  
  307. already exists.
  308.  
  309. 1057 E_CANT_GET_WRITE_ACCESS
  310. STRING
  311. The symbol %s cannot be modified because an editor has made changes
  312. to it which have not been saved.
  313.  
  314. 1058 E_CANT_RELEASE_WRITE_ACCESS
  315. STRING
  316. Couldn't release write access to symbol %s.
  317.  
  318. 1059 E_IO_PROBLEMS_WARNING
  319. Some problems were encountered while doing IO.  An attempt was made to recover
  320. from these problems.  Some symbols may have been corrupted or lost.
  321.     
  322. 1060 E_COULD_NOT_OPEN_HDF_FILE
  323. STRING
  324. Document %s could not be opened.
  325.  
  326. 1061 E_TROUBLE_OPENING_FILE
  327. STRING
  328. There were some problems encountered while opening the file %s.  These problems
  329. were not fatal but will probably cause some problems.  Do you wish to continue?
  330.  
  331. 1062 E_ERROR_IN_BIF
  332. STRING
  333. In built-in function %s.
  334.  
  335. 1063 E_NOT_A_SCALAR_IN_MATRIX_INPUT
  336. You can only use scalar values when specifying a vector or matrix in-line.
  337.  
  338. 1064 E_VECTOR_MATRIX_DIVISION
  339. You can't divide a vector by a matrix.  Use the solve built-in function instead.
  340.  
  341. 1065 E_SYMBOL_NOT_IN_TABLE_RENAME
  342. You can't rename a local symbol or an intermediate result.
  343.  
  344. 1066 E_SYMBOL_NOT_IN_TABLE_SET_TYPE
  345. You can't change the type of an intermediate result.
  346.  
  347. 1067 E_ILLEGAL_TYPE_CONVERSION
  348. TYPE TYPE
  349. An attempt was made to convert a symbol of type %s to type %s.  This type of 
  350. conversion is not supported.
  351.  
  352. 1068 E_INVALID_TYPE_FOR_COMPLEX_EXPRESSION
  353. Only integer or real scalars may be used in a complex expression.
  354.  
  355. 1069 E_ZERO_OR_NEGATIVE_DIMENSION
  356. An attempt was made to set the dimension of a symbol to either zero or a negative
  357. value.
  358.  
  359. 1070 E_NEGATIVE_DIMENSION
  360. An attempt was made set the dimension of a symbol to a negative value.
  361.  
  362. 1072 E_FAILURE_DETECTED
  363. A failure was detected.
  364.  
  365. 2001 E_ODE_INSTALL_NOT_A_FUNCTION
  366. Attempt to install a symbol as a function in a ODE problem solver that is
  367. not a function.
  368.  
  369. 2002 E_ODE_INSTALL_BAD_ARGUMENT_LIST
  370. Attempt to install a function in a ODE problem solver that has the wrong
  371. number of arguments.
  372.  
  373. 2003 E_ODE_EVALUATE_NO_FUNCTION
  374. No function was installed for a ODE problem solver.
  375.  
  376. 2004 E_ODE_EVALUATE_TYPE_NOT_VECTOR
  377. Return from ODE system of equations not a vector.
  378.  
  379. 2005 E_ODE_EVALUATE_BAD_DIMENSION
  380. Vector returned from ODE system of equations has the wrong dimension.
  381.  
  382. 2006 E_INTEG_INSTALL_NOT_A_FUNCTION
  383. Attempt to install a symbol as a function in an integrator that is
  384. not a function.
  385.  
  386. 2007 E_INTEG_INSTALL_BAD_ARGUMENT_LIST
  387. Attempt to install a function in an integrator that has the wrong
  388. number of arguments.
  389.  
  390. 2008 E_INTEG_EVALUATE_NO_FUNCTION
  391. No function was installed for an integrator solver.
  392.  
  393. 2009 E_INTEG_EVALUATE_TYPE_NOT_SCALAR
  394. Return from integrator equation not a scalar.
  395.  
  396. 2010 E_NLSS_INSTALL_NOT_A_FUNCTION 
  397. Attempt to install a symbol as a function in a nonlinear system problem
  398. solver that is not a function.
  399.  
  400. 2011 E_NLSS_INSTALL_BAD_ARGUMENT_LIST
  401. Attempt to install a function in a nonlinear system problem solver that 
  402. has the wrong number of arguments.
  403.  
  404. 2012 E_NLSS_EVALUATE_NO_FUNCTION
  405. No function was installed for a nonlinear system problem solver.
  406.  
  407. 2013 E_NLSS_EVALUATE_TYPE_NOT_SCALAR
  408. Return from nonlinear system of equations not a scalar.
  409.  
  410. 2014 E_GRAPHER_EXPR_COMPILATION
  411. STRING INT32
  412. Error in grapher expression.  %s.  At character position %s.
  413.  
  414. 2101 E_GRAPHER_INVALID_INPUT
  415. The input to a grapher function was invalid.
  416.  
  417. 2102 E_PLOT_GRAPH_DIMENSION_MISMATCH
  418. An attempt was made to place a 2D plot into a 3D graph or a 3D plot into a 2D
  419. graph.
  420.  
  421. 2103 E_GRAPHER_INTERNAL_ERROR
  422. Some kind of internal error in the grapher.
  423.  
  424. 2104 E_GRAPHER_ERROR
  425. STRING STRING
  426. GRAPHER ERROR: %s in Grapher Function %s
  427.  
  428. 2200 E_CANCEL_BUTTON_PRESSED
  429. User requested interuption of script.
  430.  
  431. 2201 E_INPUT_NOT_A_NUMBER
  432. Input string could not be converted to a number.
  433.  
  434. 2202 E_USER_DEFINED_ERROR
  435. STRING
  436. %s
  437.  
  438. 2300 E_ERROR_OPENING_HIQ_CONVERSIONS
  439. The file "HiQ_Conversions" could not be opened.  Check to make sure that the file
  440. is in the same directory as your application.
  441.  
  442. 2301 E_ERROR_READING_HIQ_CONVERSIONS
  443. INT32
  444. An error was detected on line %s while reading file "HiQ_Conversions".
  445.  
  446. 2302 E_TOO_MANY_CONV_NAMES
  447. INT32
  448. There were too many conversion names input.  The maximum is 4.  Error occured on
  449. line %s while reading file "HiQ_Conversions".
  450.  
  451. 2303 E_TOO_MANY_CONV_STEPS
  452. INT32
  453. There were too many conversion steps input.  The maximum is 4.  Error occured on
  454. line %s while reading file "HiQ_Conversions".
  455.  
  456. 2304 E_BAD_CONVERSION
  457. INT32
  458. The conversion type input is not supported.  Valid types are +, -, *, /, 
  459. exp and log.  Error occured on line %s while reading file "HiQ_Conversions".
  460.  
  461. 2305 E_BAD_CONV_INPUT
  462. INT32
  463. There was a problem with the text in the conversion file.  Error occured on
  464. line %s while reading file "HiQ_Conversions".
  465.  
  466. 2306 E_UNSUPPORTED_CONVERSION
  467. STRING
  468. Conversion to or from %s is not supported.  If you wish to add it edit the
  469. file "HiQ_Conversions".
  470.  
  471. ******************************************************************************
  472. *                                                                            *
  473. * Please do not insert text after this comment!  It has a newline character  *
  474. * after its last line, and some platforms require this at EOF.               *
  475. *                                                                            *
  476. ******************************************************************************
  477.  
  478.  
  479. **********   Begin file sydInternal:HiQs:HiQv1.0.1d4:Errors:Errors_Syd   **********
  480.  
  481.  
  482. *******************************************************************************
  483. *
  484. 5001 E_COMPILATION_OF_CANCELLED
  485. STRING
  486. Compilation of "%s" is cancelled.
  487. 5002 E_FATAL_ERROR_IN_COMPILER
  488.  
  489. Internal error during compilation.
  490. 5003 E_COMPILATION_CANCELLED
  491.  
  492. Compilation is cancelled.
  493. 5004 E_OPENING_SCRIPT_SOURCE_IN
  494. STRING
  495. Unable to find HiQ-Script "%s".
  496. 5005 E_OPENING_SCRIPT_SOURCE
  497.  
  498. Unable to find HiQ-Script.
  499. 5006 E_READING_SCRIPT_SOURCE_IN
  500. STRING
  501. Error while reading HiQ-Script "%s".
  502. 5007 E_READING_SCRIPT_SOURCE
  503.  
  504. Error while reading HiQ-Script.
  505. 5008 E_FN_NAME_TOO_LONG_FOR_FILE_IS
  506. STRING
  507. Function name "%s" is too long to form a filename.
  508. 5009 E_FN_NAME_TOO_LONG_FOR_FILE
  509. STRING
  510. Function name is too long to form a filename.
  511. 5010 E_UNABLE_TO_OPEN_V_OBJ_FILE_IS
  512. STRING
  513. Unable to open object file "%s".
  514. 5011 E_UNABLE_TO_OPEN_V_OBJ_FILE
  515.  
  516. Unable to open object file.
  517. 5012 E_UNABLE_TO_OPEN_LIST_FILE_IS
  518. STRING
  519. Unable to open listing/xref file "%s".
  520. 5013 E_UNABLE_TO_OPEN_LIST_FILE
  521.  
  522. Unable to open listing/xref file.
  523. 5014 E_UNABLE_TO_OPEN_DUMP_FILE_IS
  524. STRING
  525. Unable to open file "%s" containing results.
  526. 5015 E_UNABLE_TO_OPEN_DUMP_FILE
  527.  
  528. Unable to open file containing results.
  529. 5016 E_UNABLE_TO_OPEN_ERROR_FILE_IS
  530. STRING
  531. Unable to open file "%s" containing error messages.
  532. 5017 E_UNABLE_TO_OPEN_ERROR_FILE
  533.  
  534. Unable to open file containing error messages.
  535. 5018 E_UNABLE_TO_OPEN_SHAKE_FILE_IS
  536. STRING
  537. Unable to open demo handshake file "%s".
  538. 5019 E_UNABLE_TO_OPEN_SHAKE_FILE
  539.  
  540. Unable to open demo handshake file.
  541. 5020 E_UNABLE_TO_OPEN_IMP_MATR_F_IS
  542. STRING
  543. Unable to open matrix import file "%s".
  544. 5021 E_UNABLE_TO_OPEN_IMP_MATR_F
  545.  
  546. Unable to open matrix import file.
  547. 5022 E_EMPTY_IMPORT_MATRIX_FILE_IS
  548. STRING
  549. Matrix import file "%s" is empty.
  550. 5023 E_EMPTY_IMPORT_MATRIX_FILE
  551.  
  552. Matrix import file is empty.
  553. 5024 E_EARLY_EOF_IN_IMPORT_MATR_F_IS
  554. STRING
  555. End of file in import matrix file "%s" before all data was read.
  556. 5025 E_EARLY_EOF_IN_IMPORT_MATR_F
  557.  
  558. End of file in import matrix file before all data was read.
  559. 5026 E_UNABLE_TO_OPEN_SCRIPT_FILE_IS
  560. STRING
  561. Unable to open file "%s" to write HiQ-Script.
  562. 5027 E_UNABLE_TO_OPEN_SCRIPT_FILE_IS
  563.  
  564. Unable to open file to write HiQ-Script.
  565. 5028 E_NO_EXTERNAL_QFUNCTION
  566. STRING
  567. Unable to find external function for HiQ-Script "%s".
  568. 5029 E_QSCRIPT_NOT_IN_SYM_TABLE_IS
  569. STRING
  570. Unable to find HiQ-Script "%s" in project symbol table.
  571. 5030 E_QSCRIPT_NOT_IN_SYM_TABLE
  572.  
  573. Unable to find HiQ-Script in project symbol table.
  574. 5031 E_READING_FILE
  575. STRING
  576. Error reading into HiQ Symbol Table from file "%s".
  577. 5032 E_IMPORTING_SYMBOL_FROM_FILE
  578. STRING
  579. Error attempting to read symbol "%s".
  580. 5033 E_OPENING_SYMBOL_FILE_FOR
  581. STRING
  582. Unable to open file to read symbol "%s".
  583. 5034 E_OPENING_SYMBOL_OUTFILE_FOR
  584. STRING
  585. Unable to open file to save symbol "%s".
  586. 5035 E_QS_CREATION_OF_CANCELLED
  587. STRING
  588. Generation of HiQ-Script "%s" is cancelled.
  589. 5036 E_QS_CREATION_CANCELLED
  590.  
  591. Generation of new HiQ-Script is cancelled.
  592. 5037 E_MATRIX_IMPORT_CANCELLED
  593.  
  594. Attempted matrix import is cancelled.
  595. 5038 E_INVALID_IMPORT_TYPE
  596. INT32
  597. "%s" is not a valid value for a symbol.  Use language constants <complex>, <real>, 
  598. and <integer> (which are set to "6", "5", and "4").
  599. 5039 E_VECTOR_IMPORT_CANCELLED
  600.  
  601. Attempted vector import is cancelled.
  602. 5040 E_INVALID_STRING_FOR_REAL
  603. STRING
  604. "%s" is not a valid string for a real number.
  605. 5041 E_EOF_ON_IMPORT_MATRIX
  606. INT32 INT32 STRING INT32 INT32
  607. End of file while attempting to read row %s, column %s of matrix "%s"; %s rows and 
  608. %s columns were specified.
  609. 5042 E_AT_ROW_M_COLUMN_N
  610. INT32 INT32 STRING
  611. Error occurred while attempting to read row %s, column %s of matrix "%s".
  612. 5043 E_WHILE_READING_SYMBOL
  613. STRING
  614. Error occurred while attempting to read scalar "%s".
  615. 5044 E_EOF_ON_IMPORT_SCALAR
  616. STRING
  617. End of file while attempting to read scalar "%s".
  618. 5045 E_AT_ELEMENT_N
  619. INT32 STRING
  620. Error occurred while attempting to read element %s of vector "%s".
  621. 5046 E_EOF_ON_IMPORT_VECTOR
  622. INT32 STRING INT32
  623. End of file while attempting to read element %s of vector "%s"; %s elements were 
  624. specified.
  625. 5047 E_INVALID_STRING_FOR_INTEGER
  626. STRING
  627. "%s" is not a valid string for an integer.
  628. 5048 E_EXPORT_FIELD_WIDTH_NEGATIVE
  629. INT32
  630. Specify a field width greater than zero for export format.  (You specified "%s".)
  631. 5049 E_EXPORT_FIELD_WIDTH_LIMIT
  632. INT32 INT32
  633. "%s" is much too large for export field width.  Specifiy a width of "%s" or less.
  634. 5050 E_EXPORT_DECIMAL_PLACES_NEGATIVE
  635. INT32
  636. Specify non-negative number of decimal for export format.  (You specified "%s".)
  637. 5051 E_EXPORT_DECIMAL_PLACES_LIMIT
  638. INT32
  639. "%s" is much too large for number of decimal places exported.  Specifiy a width of "%s" or less.
  640. 5052 E_EXPORT_IN_FORMAT_INVALID
  641.  
  642. Invalid export format.  Specify language constant <decimal> or <scientific>.
  643. 5053 E_EXPORT_DELIMITER_INVALID
  644.  
  645. Invalid delimiter for export fields.  Specify language constant <delimit_space>, 
  646. <delimit_tab>, <delimit_comma>, or <delimit_newline>.
  647.  
  648. 5054 E_EXPORT_FIELDS_PER_LINE_INVALID
  649. INT32
  650. "%s" export fields per line is invalid.  Specify a positive integer.
  651. 5055 E_EXPORT_ROW_LF_BOOL_INVALID
  652.  
  653. Invalid boolean value to specify linefeed after each export row.  Specify "true" or 
  654. "false".
  655. 5056 E_INVALID_TYPE_FOR_EXPORT
  656.  
  657. Export functions require a symbol of the specified type as an argument.
  658. 5057 E_EXPORT_CANCELLED
  659.  
  660. Attempted export is cancelled.
  661. 5058 E_INV_TYPE_FOR_EXP_INT_MATRIX
  662.  
  663. "ExportIntegerMatrix" requires an integer matrix as an argument.
  664. 5059 E_EXPORT_AS_INT_MAT_CANCELLED
  665.  
  666. Attempted export of integer matrix is cancelled.
  667. 5060 E_INV_TYPE_FOR_EXP_INT_VECTOR
  668.  
  669. "ExportIntegerVector" requires an integer vector as an argument.
  670. 5061 E_EXPORT_AS_INT_VEC_CANCELLED
  671.  
  672. Attempted export of integer vector is cancelled.
  673. 5062 E_INV_TYPE_FOR_EXP_INT_SCALAR
  674.  
  675. "ExportIntegerScalar" requires an integer scalar as an argument.
  676. 5063 E_EXPORT_AS_INT_SC_CANCELLED
  677.  
  678. Attempted export of integer scalar is cancelled.
  679. 5064 E_INVALID_TYPE_FOR_NUM_EXPORT
  680.  
  681. The symbol you specified for numeric export is not a numeric type.
  682. 5065 E_EXPORT_USE_HEADER_BOOL_INVALID
  683.  
  684. Invalid boolean value to specify a header before the data.  Specify "true" or "false".
  685. 5066 E_UNABLE_TO_SAVE_SYMBOL
  686.  
  687. Save cancelled.
  688. 5067 E_UNABLE_TO_SAVE_AS_SYMBOL
  689.  
  690. Save As cancelled.
  691. 5068 E_UNABLE_TO_SAVE_A_COPY_SYMBOL
  692.  
  693. Save A Copy cancelled.
  694. 5069 E_WRITING_FILE
  695. STRING
  696. Error writing to file for symbol "%s".
  697. 5070 E_EXP_BIN_NOT_IMPLEMENTED_YET
  698. STRING
  699. Export in binary has not been implemented for the type represented by the symbol "%s".
  700. 5071 E_EXPORT_APPEND_FLAG_INVALID
  701.  
  702. The "Replace or Append Mode" flag must be either <replace> or <append>.
  703. 5072 E_EXP_BINR32_NOT_IMPLEMENTED_YET
  704. STRING
  705. Export 32-bit Real in binary has not been implemented for the type represented by 
  706. the symbol "%s".
  707. 5073 E_UNABLE_TO_SET_MAC_FILETYPE
  708. STRING STRING
  709. Unable to set Mac filetype to "%s" for file "%s".
  710. 5074 E_INVALID_MAC_FILETYPE
  711. STRING STRING
  712. You may not set the type of file "%s", because "%s" is not a valid Macintosh filetype.
  713. 5075 E_REVERT_SYMBOL_MOVED
  714. STRING
  715. Unable to Revert; symbol "%s" has changed.
  716. 5076 E_REVERT_SYMBOL_NOT_FOUND
  717. STRING
  718. Unable to Revert; symbol "%s" cannot be found.
  719. 5077 E_REVERT_CANCELLED
  720. STRING
  721. Unable to Revert to symbol "%s".
  722. 5078 E_EXISTING_PUT_SYMBOL_BAD_TYPE
  723. STRING
  724. Unable to save symbol as "%s"; a symbol of an incompatible type for conversion 
  725. already exists by that name.
  726. 5079 E_OPEN_NULL_SYMBOL
  727.  
  728. Internal error --- attempt to open an empty symbol.  Open cancelled.
  729. 5080 E_CHOSEN_SYMBOL_NOT_FOUND
  730. STRING
  731. Internal error --- the symbol name you selected ("%s") could not be located.  Open 
  732. cancelled.
  733. 5081 E_CANT_FIND_SCRIPTS_SYMBOL
  734.  
  735. Internal error --- cannot find the correct symbol for this script.
  736. 5082 E_OPEN_NO_SCRIPTS_IN_SYM_TAB
  737.  
  738. Cannot open an old script symbol; no script symbols currently exist.
  739. 5083 E_CHOOSE_SYM_SUBVIEW_NOT_FOUND
  740.  
  741. Internal error --- unable to open.
  742. 5084 E_NEW_SYM_SUBVIEW_NOT_FOUND
  743.  
  744. Internal error --- unable to save.
  745. 5085 E_QFN_NAME_SAME_AS_SCRIPT
  746. STRING STRING
  747. Error --- you have defined a function "%s", but you already have a HiQ-Script by the 
  748. same name.  You may follow the suggested naming convention by renaming the HiQ-Script 
  749. to "%s_s" and recompiling.
  750. 5086 E_NAMED_SYMBOL_NOT_FOUND
  751. STRING
  752. The named symbol ("%s") could not be found.
  753. 5087 E_NAMED_SYMBOL_WRONG_TYPE
  754. STRING
  755. The named symbol ("%s") is not a valid type for the selected Editor.
  756. 5088 E_EDITOR_NOT_INSTALLED
  757.  
  758. That editor has not been installed in HiQ.
  759. 5089 E_SPECIFIED_SYMBOL_NOT_FOUND
  760.  
  761. The specified symbol could not be found.
  762. 5090 E_UNABLE_TO_INSERT_INTO_SCRIPT
  763.  
  764. Unable to insert.
  765. 5091 E_SE_NO_TEXT_TO_INSERT
  766.  
  767. Internal error - text not found.
  768. 5092 E_CANT_FIND_SCRIPTS_NBSYMBOL
  769.  
  770. Internal error - unable to find symbol.
  771. 5093 E_CANT_LOCK_SCRIPT_SYMBOL
  772.  
  773. Internal error - unable to access symbol.
  774. 5094 E_SE_SUBVIEW_NOT_FOUND
  775.  
  776. Internal error - unable to complete operation.
  777. 5095 E_UNABLE_TO_PASTE_INTO_SCRIPT
  778.  
  779. Unable to complete paste operation.
  780. 5096 E_UNABLE_TO_CUT_FROM_SCRIPT
  781.  
  782. Unable to complete cut operation.
  783. 5097 E_UNABLE_TO_COPY_FROM_SCRIPT
  784.  
  785. Unable to complete copy operation.
  786. 5098 E_MEM_REDUCE_ERROR_ON_COPY
  787.  
  788. Internal error on copy --- suggest you save and exit the application, then reenter!
  789. 5099 E_UNABLE_TO_VALIDATE_CONSTRUCTS
  790.  
  791. Internal error while updating language constructs --- suggest you save and exit the 
  792. application, then reenter!
  793. 5100 E_SE_REPL_ALL_NOTHING
  794.  
  795. "Replace All" for an empty string would never end.
  796. 5101 E_SE_UNABLE_TO_REPLACE_ALL
  797.  
  798. Replace All is cancelled.
  799. 5102 E_SE_UNABLE_TO_REPLACE
  800.  
  801. Replace is cancelled.
  802. 5103 E_CANT_FIND_SYMBOL_TABLE
  803.  
  804. Internal error --- cannot find the symbol table for this script.
  805. 5104 E_NO_SYM_REP_VIEW_SPECIFIED
  806.  
  807. Internal error --- cannot display the script as specified.
  808. 5105 E_PRINT_FROM_WS_NOT_INSTALLED
  809.  
  810. Internal error --- not implemented.
  811. 5106 E_UNABLE_TO_OPEN__FILE
  812. STRING
  813. Unable to open file "%s".
  814. 5107 E_EMPTY_FILE
  815. STRING
  816. The file ("%s") is empty.
  817. 5108 E_UNABLE_TO_SAVE_TO_STR_SYMBOL
  818.  
  819. Unable to save to a new string symbol.
  820. 5109 E_NO_WRITE_VM_RESULTS_STRING
  821.  
  822. Internal error --- unable to access script results symbol.
  823. 5110 E_NO_FILENAME_SPECIFIED
  824.  
  825. Internal error --- no filename specified.
  826. 5111 E_NEW_STRING_SYM_NO_DOC
  827.  
  828. Internal error --- no document specified for new String Symbol.
  829. 5112 E_NEW_STRING_SYM_NO_STRING
  830.  
  831. Internal error --- no string specified for new String Symbol.
  832. 5113 E_NEW_STRING_SYM_NO_NBSYMMANAGER
  833.  
  834. Internal error --- invalid project document.
  835. 5114 E_NEW_STRING_SYM_NO_STRSYMNAME
  836.  
  837. Internal error --- no symbol name specified for new String Symbol.
  838. 5115 E_UNABLE_TO_DISPLAY_SCR_RESULTS
  839.  
  840. Unable to display script results.
  841. 5116 E_NO_SCRIPT_NAME
  842.  
  843. Internal error --- no script name specified for script results.
  844. 5117 E_UNABLE_TO_DISPLAY_XREF
  845.  
  846. Unable to display cross reference.
  847. 5118 E_STRING_TOO_BIG_FOR_EDITOR
  848.  
  849. The specified text is too large to open in the editor.
  850. 5119 E_SE_DIALOG_VIEW_NOT_FOUND
  851.  
  852. Internal error --- unable to locate
  853. 5120 E_UNABLE_TO_SAVE_ERRORS
  854.  
  855. Internal error --- unable to save error list.
  856. 5121 E_NO_ERROR_LIST_SPECIFIED
  857.  
  858. Internal error --- no compilation errors list specified.
  859. 5122 E_NOTEBOOK_SCREWED_UP
  860.  
  861. Internal error --- unable to access symbol list.
  862. 5123 E_SYMBOL_NAME_ALREADY_USED
  863. STRING
  864. Symbol name "%s" already exists; you must choose a unique name.
  865. 5124 E_UNABLE_TO_CONTINUE_TYPING
  866.  
  867. Unable to insert additional typed characters.
  868. 5300 W_WILL_DESTROY_SYMBOL_TABLE
  869.  
  870. If you continue all notebook symbols will be destroyed.
  871. 5301 W_ASK_TRY_TO_CONTINUE
  872.  
  873. Do you want to continue?
  874. 5302 W_WILL_DESTROY_THIS_SYMBOL
  875. STRING
  876. If you continue, the symbol "%s" will be destroyed.
  877. 5303 W_NO_SYMBOL_TABLE_FILE
  878. STRING
  879. A HiQ Worksheet file ("%s") could not be found in the application directory.  If you 
  880. continue, a new one will be created for you.
  881. 5304 W_CORRUPT_SYMBOL_TABLE_FILE
  882. STRING
  883. Your HiQ Worksheet file ("%s" in the application directory) has apparently become 
  884. corrupted, because no HiQ symbols can be found.  If you continue, a new HiQ Worksheet 
  885. file will be created for you.
  886. 5305 W_CORRUPT_SYMBOL_IN_FILE
  887.  
  888. An unknown symbol has become corrupt.  If you continue, the symbol CANNOT BE RECOVERED 
  889. and your data will be lost.
  890. 5306 W_PUT_SYMBOL_ALREADY_EXISTS
  891. STRING
  892. The symbol "%s" already exists; if you continue, it will be overwritten.  
  893. 5307 W_COMPILING_NOT_SAVED
  894.  
  895. This script has not been saved, so its external statements' compiled object code is 
  896. considered temporary and will not be saved. (Any enclosed functions' object code will 
  897. be saved.)
  898. 5308 W_QFN_FROM_A_DIFFERENT_SCRIPT
  899. STRING STRING
  900. Function "%s" is already defined in a different HiQ-Script ("%s").  Do you want to 
  901. overwrite it?
  902. 5309 W_EXISTING_SYMBOL_NOT_A_QFN
  903. STRING STRING
  904. You have defined a function named "%s", but %s symbol already exists by that name.  
  905. Do you want to overwrite it?
  906. 5500 M_TRYING_TO_CONTINUE
  907.  
  908. Attempting to continue execution.
  909. 5501 M_INVALID_STRING_CONSTANT_IN
  910. STRING STRING
  911. Invalid string for language constant <%s> in file "%s".
  912. 5502 M_INVALID_STRING_CONSTANT
  913.  
  914. Invalid string in language constant file.
  915. 5503 M_MISSING_STRING_CONSTANT_IN
  916. STRING STRING
  917. No string specified for language constant <%s> in file "%s".
  918. 5504 M_MISSING_STRING_CONSTANT
  919.  
  920. Missing string value for constant in language constant file.
  921. 5505 M_MISSING_CONSTANT_VALUE_IN
  922. STRING STRING
  923. No value specified for language constant <%s> in file "%s".
  924. 5506 M_MISSING_CONSTANT_VALUE
  925.  
  926. Missing value for constant in language constant file.
  927. 5507 M_MISSING_CONSTANT_TYPE_IN
  928. STRING STRING
  929. No type specified for language constant <%s> in file "%s".
  930. 5508 M_MISSING_CONSTANT_TYPE
  931.  
  932. Missing type for constant in language constant file.
  933. 5509 M_INVALID_CONSTANT_TYPE_IS
  934. STRING STRING STRING
  935. Specified type "%s" for language constant <%s> in file "%s" is invalid.
  936. 5510 M_INVALID_CONSTANT_TYPE
  937.  
  938. Unknown type for constant in language constant file.
  939. 5511 M_NO_SYNTAX_ERRORS
  940.  
  941. Syntax checked --- no errors.
  942. 5512 M_NO_COMPILATION_ERRORS
  943.  
  944. Compilation complete --- no errors.
  945. 5513 M_NO_TEXT_TO_COMPILE
  946.  
  947. There is no text to compile.
  948. 5514 M_ALL_QFUNCTIONS_DELETED
  949.  
  950. BETA TESTERS:  Due to a recent modification, the internal format of compiled 
  951. HiQ-Scripts has changed.  No HiQ-Scripts or data have been lost, but you must 
  952. recompile all HiQ-Scripts before using them.  Sorry for the inconvenience.
  953. 5515 M_MEM_ERROR_ON_LINE_NUMS
  954.  
  955. Insufficient memory to add line numbers.  Editing continues without line numbers.
  956. 5516 M_MEM_REDUCE_ERROR_ON_LINE_NUMS
  957.  
  958. An unexplained memory allocation error occurred while hiding line numbers.  Editing 
  959. continues with line numbers.
  960. 5517 M_EXECUTION_FINISHED_NO_ERRORS
  961.  
  962. Execution completed --- no errors!
  963. 5518 M_EXECUTION_FINISHED_WITH_ERRORS
  964.  
  965. Execution interrupted --- errors were detected!
  966.  
  967. ******************************************************************************
  968. *                                                                            *
  969. * Please do not insert text after this comment!  It has a newline character  *
  970. * after its last line, and some platforms require this at EOF.               *
  971. *                                                                            *
  972. ******************************************************************************
  973.  
  974.  
  975. **********   Begin file sydInternal:HiQs:HiQv1.0.1d4:Errors:Errors_Mike   **********
  976.  
  977.  
  978. *
  979. *@    File:            Errors_Mike
  980. *@
  981. *@    Purpose:        HiQ Error text
  982. *@
  983. *@    Created:        1990
  984. *@
  985. *@    Authors            Initials        Involvement
  986. *@    --------------    --------        -----------------------------------------------
  987. *@    Mike Franke        MMF            created
  988. *@
  989. *@    Modification History
  990. *@
  991. *@    Date            Who    Comments                                                         S[DC]R#
  992. *@    ---------    ---    ----------------------------------------------    --------
  993. *@         4/25/91        DMP     <3>        Modified error message that smart free puts up
  994. *@                                            to put out some numbers.
  995. *@    06 Feb 91    SEG    Renamed from Errors<option-8>Mike for 
  996. *@                            portability, because most other platforms 
  997. *@                            don't have the Mac option characters on their 
  998. *@                            keyboards
  999. *@
  1000. *@    Keywords:    error
  1001. *
  1002. 7001 E_BAD_BIF_SETUP_LINE
  1003. STRING   
  1004. Bad BIF Setup file input line: %s
  1005.  
  1006. 7002 E_ARG_TYPE_VALIDATION_FAILED
  1007. INT32 STRING
  1008. Invalid type for argument number %s, built-in function '%s'.
  1009.  
  1010. 7003 E_WRONG_NUMBER_OF_ARGUMENTS
  1011. STRING INT32 INT32
  1012. Built-in function '%s' requires %s argument, not %s.
  1013.  
  1014. 7004 E_WRONG_NUMBER_OF_RETURNS
  1015. STRING INT32 INT32
  1016. Built-in function %s returns %s value(s), not %s.
  1017.  
  1018. 7005 E_INVALID_TRANSITION_FN
  1019. Invalid transition function called.
  1020.  
  1021. 7006 E_INVALID_CORE_FN
  1022. Invalid core function called.
  1023.  
  1024. 7007 E_WRONG_NUMBER_OF_RETURNS_RANGE
  1025. STRING INT32 INT32 INT32
  1026. Built-in function '%s' returns between %s and %s values.  
  1027. As used, %s is not a valid number of returns.
  1028.  
  1029. 7008 E_NEGATIVE_TYPE_SIZE
  1030. Negative type size.
  1031.  
  1032. 7009 E_INVALID_NUMBER_OF_DIMENSIONS
  1033. INT32
  1034. %s is an invalid number of dimensions.
  1035.  
  1036. 7010 E_BAD_FREE_ADDRESS
  1037. INT32 INT32
  1038. Attempt to free address %s.  Maximum allowable address is %s.
  1039.  
  1040. 7011 E_BAD_TYPE_IN_TFUNCTION
  1041. INT32 STRING
  1042. Serious Internal Error: Bad type %s passed to transition function while attempting
  1043. to execute function '%s'.  This should never happen.
  1044.  
  1045. 7012 E_BAD_INTEG_FUNCTION_NAME
  1046. Serious internal Error:  An unknown integration function name has been passed into
  1047. the transition function.  This should never happen.
  1048.  
  1049. *
  1050. *    Math code errors
  1051. *
  1052.  
  1053. 7401 E_SINGULARITY
  1054. REAL_BIG STRING
  1055. A singularity was encountered at the value %s in the %s function.
  1056.  
  1057. 7402 E_LOSS_OF_PRECISION
  1058. REAL_BIG STRING 
  1059. Loss of precision for the value of %s in the %s function.
  1060.  
  1061. 7403 E_OVERFLOW    
  1062. STRING
  1063. Floating point overflow in the %s function.
  1064.  
  1065. 7404 E_NOT_IN_DOMAIN
  1066. REAL_BIG STRING
  1067. %s is not in the domain of %s function.
  1068.  
  1069. 7405 E_OUT_OF_RANGE
  1070. REAL_BIG STRING
  1071. Value %s is out of range for %s function.
  1072.  
  1073. 7406 E_UNDERFLOW    
  1074. STRING
  1075. Floating point underflow in the %s function.
  1076.  
  1077. 7407 E_NULL_VECTOR_ARGUMENT
  1078. STRING
  1079. NULL Vector argument passed into %s function.
  1080.  
  1081. 7408 E_INVALID_VECTOR_DIMENSION
  1082. STRING STRING
  1083. Invalid vector dimension for %s function.  Should be %s.
  1084.  
  1085. 7409 E_EXPECTS_SQUARE_MATRIX
  1086. The %s function expects a square matrix, and the input was not.
  1087.  
  1088. 7410 E_FFT2_NOT_SD_INPUT
  1089. The fft2 routine only handles 2-dimensional input.  This is an internal error.
  1090.  
  1091. 7411 E_BILINEAR_WRONG_DIMENSIONS
  1092. STRING INT32 INT32
  1093. The %s function expects a 2-by-n matrix as input, where the first row contains the
  1094. filter coefficients of the numerator, and the second row contains the denominator.
  1095. The specified matrix was %s-by-%s.
  1096.  
  1097. 7412 E_DIVIDE_BY_ZERO
  1098. STRING
  1099. Attempt made to divide by zero in function %s.
  1100.  
  1101. 7413 E_NUL_HHVECT
  1102. Null HHLD_STR passed into hhVectorToStruct.
  1103.  
  1104. 7414 E_MOD_BAD_ARG
  1105. The second argument to the mod function cannot be zero.
  1106.  
  1107. 7415 E_DIM_INCOMPATIBLE_PARAMETERS
  1108. The input matrix dimension does not agree with the dimension of the given vector,
  1109. which represents the matrix's compact form.
  1110.  
  1111. 7416 E_RHS_AND_LHS_CANT_SOLVE
  1112. The dimensions of the input right-hand side and left-hand side are incompatible.
  1113. The left-hand side should be a square matrix of the same dimension as the 
  1114. right-hand side solution vector.
  1115.  
  1116. 7417 E_NOT_A_HOUSEHOLDER_VECTOR
  1117. The input vector must be a householder vector.  Since the first element is not
  1118. equal to 1, it is not a householder vector.
  1119.  
  1120. ******************************************************************************
  1121. *                                                                            *
  1122. * Please do not insert text after this comment!  It has a newline character  *
  1123. * after its last line, and some platforms require this at EOF.               *
  1124. *                                                                            *
  1125. ******************************************************************************
  1126.  
  1127.  
  1128. **********   Begin file sydInternal:HiQs:HiQv1.0.1d4:Errors:Errors_Pavel   **********
  1129.  
  1130.  
  1131. *
  1132. *@    File:            Errors_Pavel
  1133. *@
  1134. *@    Purpose:        HiQ Error text
  1135. *@
  1136. *@    Created:        1990
  1137. *@
  1138. *@    Authors            Initials        Involvement
  1139. *@    --------------    --------        -----------------------------------------------
  1140. *@    P. Berkhin        PB                created
  1141. *@
  1142. *@    Modification History
  1143. *@
  1144. *@    Date            Who    Comments                                                         S[DC]R#
  1145. *@    ---------    ---    ----------------------------------------------    --------
  1146. *@    06 Feb 91    SEG    Renamed from Errors<option-8>Pavel for 
  1147. *@                            portability, because most other platforms 
  1148. *@                            don't have the Mac option characters on their 
  1149. *@                            keyboards
  1150. *@
  1151. *@    Keywords:    error
  1152. *
  1153.  
  1154. 13001 ERR_PAVEL_1
  1155. An entered matrix must be square.
  1156.  
  1157. 13002 ERR_PAVEL_2
  1158. Internal error. Null vector or matrix pointer in the parameter list.
  1159.  
  1160. 13003 ERR_PAVEL_3
  1161. A zero vector has been entered.
  1162.  
  1163. 13004 ERR_PAVEL_4
  1164. An entered matrix must be square.
  1165.  
  1166. 13005    ERR_PAVEL_5
  1167. An entered parameter has resulted in incompatible or incorrect
  1168. dimensions in function.
  1169.  
  1170. 13006    ERR_PAVEL_6
  1171. A householder vector cannot be computed; an inappropriate vector has
  1172. been entered.
  1173.  
  1174. 13007 ERR_PAVEL_7
  1175. Internal error. A pointer member in a vector/matrix is zero.
  1176.  
  1177. 13008 ERR_PAVEL_8
  1178. A zero eigenvalue has been computed internally using the power method.
  1179.  
  1180. 13009 ERR_PAVEL_9
  1181. The finish value of the independent variable must be greater than the
  1182. starting value.
  1183.  
  1184. 13010 ERR_PAVEL_10
  1185. A numerically computed singular Jacobian occurs in the equation solving
  1186. routine.
  1187.  
  1188. 13011 ERR_PAVEL_11
  1189. Null or bad function parameter.
  1190.  
  1191. 13012 ERR_PAVEL_12
  1192. Exceed the number of step rejections allowed.
  1193.  
  1194. 13013 ERR_PAVEL_13
  1195. Tolerance parameter is either too small or negative.
  1196.  
  1197. 13014 ERR_PAVEL_14
  1198. Internal error. Vector output parameter has not been allocated.
  1199.  
  1200. 13015 ERR_PAVEL_15
  1201. Jacobian iterations diverge in the equation solver routine.
  1202.  
  1203. 13016 ERR_PAVEL_16
  1204. Choose another starting point, adjust the number of jacobian reuses,
  1205. and/or adjust the number of loss digits.
  1206.  
  1207. 13017 ERR_PAVEL_17
  1208. The stepsize exceeded the interval from start to finish; where
  1209. appropriate, the mesh step size was set to equal (finish - start).
  1210.  
  1211. 13018 ERR_PAVEL_18
  1212. Internal error. Output parameter has not been allocated properly.
  1213.  
  1214. 13019 ERR_PAVEL_19
  1215. Tolerance value was too small; the value was reset at 0.0001.
  1216.  
  1217. 13020 ERR_PAVEL_20
  1218. Internal error. Wrong nln_type parameter (see ccstiff.h) was provided
  1219. for ccstiff().
  1220.  
  1221. 13021 ERR_PAVEL_21
  1222. Too many subdivisions were required in the shooting method for BVP.
  1223.  
  1224. 13022 ERR_PAVEL_22
  1225. Unable to converge to the shooting parameter(s) in the solve routine
  1226. for BVP.
  1227.  
  1228. 13023 ERR_PAVEL_23
  1229. An error occurred in the ODE IVP solver routine; changing the parameters
  1230. that alter the entries in this routine may resolve the difficulty.
  1231.  
  1232. 13024 ERR_PAVEL_24
  1233. Left or right boundary condition matrices are not square and/or the
  1234. matrices are not compatible with one another.
  1235.  
  1236. 13025 ERR_PAVEL_25
  1237. Either the start and finish dimensions of the coefficient matrix function
  1238. are incompatible or they are inconsistent with the dimension of the
  1239. term vector function.
  1240.  
  1241. 13026 ERR_PAVEL_26
  1242. Incorrect shooting parameter value; the value <SIMPLE> was substituted.
  1243.  
  1244. 13027 ERR_PAVEL_27
  1245. Incorrect integrator parameter value; the value <IV_BULR> was substituted.
  1246.  
  1247. 13028 ERR_PAVEL_28
  1248. This BVP is actually an IVP; use the appropriate ODE IVP function.
  1249.  
  1250. 13029 ERR_PAVEL_29
  1251. The rank of the left boundary condition matrix is not full; the boundary
  1252. conditions are at least partially separable.
  1253.  
  1254. 13030 ERR_PAVEL_30
  1255. An entry on the right hand side of the tolerance calculation routine
  1256. is less than 1.0e-6; this is read as a zero entry.
  1257.  
  1258. 13031 ERR_PAVEL_31
  1259. Tolerance was either less than the minimum allowed value or greater than
  1260. the largest suggested value of 0.2 times the norm of the right-hand side;
  1261. it was set to the largest suggested value.
  1262.  
  1263. 13032 ERR_PAVEL_32
  1264. Internal error. QR decomposition type was not entered correctly; the
  1265. value <GIVENS> was substituted.
  1266.  
  1267. 13033 ERR_PAVEL_33
  1268. Either the first step parameter value was negative, or greater than the
  1269. interval from start to finish.
  1270.  
  1271. 13034 ERR_PAVEL_34
  1272. The maximum number of permitted iterations in the equation solving
  1273. routine has been exceeded.
  1274.  
  1275. 13035 ERR_PAVEL_35
  1276. The computed Jacobian is numerically ill-conditioned; unable to
  1277. converge to a solution.
  1278.  
  1279. 13036 ERR_PAVEL_36
  1280. The dimension of the initial vector is incompatible with the dimension
  1281. of the system of equations.
  1282.  
  1283. 13037 ERR_PAVEL_37
  1284. A fixed point has been reached in the iterations; convergence may still
  1285. occur with further iterations.
  1286.  
  1287. 13038 ERR_PAVEL_38
  1288. A numerically computed singular matrix occurs in the linear system of
  1289. equations in the shooting parameter calculation.
  1290.  
  1291. 13039 ERR_PAVEL_39
  1292. The maximum shooting stepsize is either less than zero or greater than
  1293. the length of the interval from start to finish.
  1294.  
  1295. 13040 ERR_PAVEL_40
  1296. The maximum number of iterations or the maximum number of function
  1297. calls is outside the allowable range; they have been reset to 128 or
  1298. 512, respectively.
  1299.  
  1300. 13041 ERR_PAVEL_41
  1301. The maximum number of iterations is outside the allowable range; it has 
  1302. been reset to 64 for the nonlinear boundary value solver or to 128 for
  1303. other routines.
  1304.  
  1305. 13042 ERR_PAVEL_42
  1306. The time limit or function evaluation limit has been exceeded.
  1307.  
  1308. 13043 ERR_PAVEL_43
  1309. A parameter passed to the function has a value outside of its allowed
  1310. domain.
  1311.  
  1312. 13044 ERR_PAVEL_44
  1313. No constraints were specified; either reenter the problem or use an
  1314. unconstrained optimization function.
  1315.  
  1316. 13045 ERR_PAVEL_45
  1317. Internal error. A NULL pointer was passed the address of the function
  1318. return value.
  1319.  
  1320. 13046 ERR_PAVEL_46
  1321. Incorrect unconstrained optimization parameter value. 
  1322.  
  1323. 13047 ERR_PAVEL_47
  1324. The dimensions are incompatible or incorrectly entered.
  1325.  
  1326. 13048 ERR_PAVEL_48
  1327. The Quasi-Newton update type was not entered correctly; try setting it
  1328. to <BFGS> or <BROYDEN>.
  1329.  
  1330. 13049 ERR_PAVEL_49
  1331. An error occurred due to ill-conditioning or semi-positive definiteness.
  1332.  
  1333. 13050 ERR_PAVEL_50
  1334. The linear search routine cannot be used in the unconstrained optimization
  1335. function because the gradient is not positive - not a descent direction.
  1336.  
  1337. 13051 ERR_PAVEL_51
  1338. The chosen unconstrained optimization routine is unable to converge
  1339. with the given parameters; resetting the parameters (perhaps relaxing
  1340. the tolerance, etc.) may result in convergence.
  1341.  
  1342. 13052 ERR_PAVEL_52
  1343. Inappropriate integer parameter.  
  1344.  
  1345. 13053 ERR_PAVEL_53
  1346. Incorrect iterative algorithm parameter value for solving the linear system. 
  1347.  
  1348. 13054 ERR_PAVEL_54
  1349. All parameters are defaulted to simultaneously. 
  1350.  
  1351. 13055 ERR_PAVEL_55
  1352. Non-positive diffusion coefficient in a field equation. 
  1353.  
  1354. 13056 ERR_PAVEL_56
  1355. The x-tolerance (but not f-tolerance) was achieved. 
  1356.  
  1357. 13057 ERR_PAVEL_57
  1358. The f-tolerance (but not x-tolerance) was achieved. 
  1359.  
  1360. 13058 ERR_PAVEL_58
  1361. The f- or x- tolerance was achieved, but the numerically computed Jacobian is
  1362. nearly singular or the maximum number of iterations has been exceeded, therefore
  1363. the computed result may be unreliable.
  1364.  
  1365. 13059 ERR_PAVEL_59
  1366. The number of Jacobian reuse iterations fell outside the acceptable range; the
  1367. Jacobian reuse iteration parameter was set to zero.
  1368.  
  1369. 13060 ERR_PAVEL_60
  1370. Try setting the Jacobian reuse parameter to zero, and rerunning the problem.
  1371.  
  1372. 13061 ERR_PAVEL_61
  1373. No convergence to the solution; try switching to another starting point.
  1374.  
  1375.  
  1376. **********   Begin file sydInternal:HiQs:HiQv1.0.1d4:Errors:Errors_Richard   **********
  1377.  
  1378.  
  1379. *
  1380. *@    File:            Errors_Richard
  1381. *@
  1382. *@    Purpose:        HiQ Error text
  1383. *@
  1384. *@    Created:        1990
  1385. *@
  1386. *@    Authors            Initials        Involvement
  1387. *@    --------------    --------        -----------------------------------------------
  1388. *@ Richard L. Wang    RLW        created
  1389. *@
  1390. *@    Modification History
  1391. *@
  1392. *@    Date            Who    Comments                                                         S[DC]R#
  1393. *@    ---------    ---    ----------------------------------------------    --------
  1394. *@    06 Feb 91    SEG    Renamed from Errors<option-8>Richard for 
  1395. *@                            portability, because most other platforms 
  1396. *@                            don't have the Mac option characters on their 
  1397. *@                            keyboards
  1398. *@
  1399. *@    Keywords:    error
  1400. *
  1401.  
  1402. 15001 E_MATRIX_DIM_INVALID
  1403. Invalid matrix dimension. The number of rows is less than the number of columns.
  1404.  
  1405. 15002 E_PARAMETER_INVALID
  1406. Invalid matrix or vector parameter.
  1407.  
  1408. 15003 E_DIMENSION_INVALID
  1409. Invalid matrix or vector dimension.
  1410.  
  1411. 15004 E_MATRIX_NON_SQUARE
  1412. A non-square matrix has been detected.
  1413.  
  1414. 15005 E_MATRIX_DIM_UNEQUAL
  1415. The matrix dimensions are incompatible.
  1416.  
  1417. 15006 E_MAXIMUM_ITERATIONS
  1418. The maximum number of iterations has been exceeded.
  1419.  
  1420. 15007 E_MATRIX_SINGULAR
  1421. A singular matrix has been detected.
  1422.  
  1423. 15008 E_TYPE_MATRIX_SINGULAR
  1424. STRING 
  1425. A singular %s matrix has been detected.
  1426.  
  1427. 15009 E_MATRIX_BANDWIDTH
  1428. The matrix bandwidth is incorrect.
  1429.  
  1430. 15010 E_MATRIX_NONPOSDEF
  1431. A non-positive definite matrix has been detected.
  1432.  
  1433. 15011 E_INVERT_NONPOSDEF
  1434. Try inverting the non-positive definite matrix.
  1435.  
  1436. 15012 E_PIVOT_INDICES_BAD
  1437. Row (and column) indices for complete pivoting are out-of-range.
  1438.  
  1439. 15013 E_TRI_PARA_INVALID
  1440. Invalid triangular matrix indicator; it should be 1 or 2 only.
  1441.  
  1442. 15014 E_ZERO_EIGEN
  1443. A zero eigenvalue is detected.
  1444.  
  1445. 15015 E_NON_NEG_PARAMETER
  1446. Only a non-negative parameter is acceptable.
  1447.  
  1448. 15016 E_FUNC_DOMAIN
  1449. A value does not lie within the domain of the function.
  1450.  
  1451. 15017 E_FUNC_PARAMETER
  1452. Invalid parameter value for function evaluation.
  1453.  
  1454. 15018    E_ALG_NOT_CONVERGE
  1455. Unable to converge to a solution.
  1456.  
  1457. 15019    E_VECTOR_DIM_UNEQUAL
  1458. Incompatible matrix or vector dimensions.
  1459.  
  1460. 15020    E_MODEL_IMPROPER
  1461. Chosen model function is inappropriate or incorrect for the problem.
  1462.  
  1463. 15021    E_KNOTS_INVALID
  1464. Chosen knot sequence is inappropriate or incorrect.
  1465.  
  1466. 15022    E_KNOTS_NUM_INVALID 
  1467. Incorrect number of knots for the problem.
  1468.  
  1469. 15023    E_POSITIVE_PARAMETER
  1470. Only a positive parameter is acceptable.
  1471.  
  1472. 15024    E_MAXIMUM_LEVELS
  1473. The maximum number of levels has been exceeded.
  1474.  
  1475. 15025    E_INTERP_POINT_INVALID
  1476. Interpolating points are not appropriately chosen for the problem.
  1477.  
  1478. 15026    E_ODD_PARAMETER
  1479. Only an odd integer parameter is acceptable.
  1480.  
  1481. 15027 E_ORDER_INVALID
  1482. Inappropriate or incorrect order of spline.
  1483.  
  1484. 15028 E_INSUFF_NO_POINTS
  1485. Insufficient number of input points.
  1486.  
  1487. 15029    E_SINGULAR_MINOR
  1488. Singular minor of the given matrix has been detected.
  1489.  
  1490. 15030 E_WRONG_NO_POINTS
  1491. Incorrect value for the number of input points.
  1492.  
  1493. 15031    E_MOMENT_COEF_NOEXIST
  1494. Moment coefficient does not exist due to zero variance.
  1495.  
  1496. 15032 E_STANFORM_NOEXIST
  1497. Standard normal form does not exist due to zero variance.
  1498.  
  1499. 15033 E_ROOT_NOBRACKET 
  1500. Root is not bracketed properly, try another interval.
  1501.  
  1502. 15034    E_SLOPE_NOEXIST
  1503. The slope of the line does not exist.
  1504.  
  1505. 15035 E_LINE_NOEXIST
  1506. The expected line does not exist.
  1507.  
  1508. 15036    E_CIRCLE_NOEXIST
  1509. The expected circle does not exist.
  1510.  
  1511. 15037 E_RANK_ERROR
  1512. The specified rank is incorrect.
  1513.  
  1514. 15038    E_INVALID_POLY 
  1515. Invalid polynomial.
  1516.  
  1517. 15039 E_INVALID_FUNC 
  1518. Invalid or undefined function.
  1519.  
  1520. 15040    E_INVALID_POLY_DEGREE
  1521. Degree of polynomial has not been defined.
  1522.  
  1523. 15041    E_VALUE_NOEXIST
  1524. A numerical value cannot be computed or returned.
  1525.  
  1526. 15042    E_WSTORAGE_INSUFF
  1527. Internal error. Allocated working storage is too small.
  1528.  
  1529. 15043    E_INVALID_EQN
  1530. Invalid equation.
  1531.  
  1532. 15044 E_ARITH_OVERFLOW 
  1533. Result cannot be computed due to floating point arithmetic overflow.
  1534.  
  1535. ******************************************************************************
  1536. *                                                                            *
  1537. * Please do not insert text after this comment!  It has a newline character  *
  1538. * after its last line, and some platforms require this at EOF.               *
  1539. *                                                                            *
  1540. ******************************************************************************
  1541.  
  1542.  
  1543. **********   Begin file sydInternal:HiQs:HiQv1.0.1d4:Errors:Errors_Dan   **********
  1544.  
  1545.  
  1546. *
  1547. *@    File:            Errors_Dan
  1548. *@
  1549. *@    Purpose:        HiQ Error text
  1550. *@
  1551. *@    Created:        1990
  1552. *@
  1553. *@    Authors            Initials        Involvement
  1554. *@    --------------    --------        -----------------------------------------------
  1555. *@    Dan G. Hu        DGH            created
  1556. *@
  1557. *@    Modification History
  1558. *@
  1559. *@    Date            Who    Comments                                                         S[DC]R#
  1560. *@    ---------    ---    ----------------------------------------------    --------
  1561. *@    06 Feb 91    SEG    Renamed from Errors<option-8>Dan for 
  1562. *@                            portability, because most other platforms 
  1563. *@                            don't have the Mac option characters on their 
  1564. *@                            keyboards
  1565. *@
  1566. *@    Keywords:    error
  1567. *
  1568.  
  1569. 17101 E_ZERO_NUMERATOR_ARRAY
  1570. Numerator vector is zero.
  1571.  
  1572. 17102 E_ZERO_DENOMINATOR_ARRAY
  1573. Denominator vector is zero.
  1574.  
  1575. 17103 E_MEM_ALLOC
  1576. Memory allocation failure.
  1577.  
  1578. 17104 E_INSUFFICIENT_LENGTH
  1579. Array length is less than required.
  1580.  
  1581. 17105 E_NOT_POWER_OF_TWO
  1582. Array length is not a power of two.
  1583.  
  1584. 17106 E_ZERO_DENOMINATOR
  1585. A denominator value of zero was detected.
  1586.  
  1587. 17107 E_ZERO_NUMERATOR
  1588. A numerator value of zero was detected.
  1589.  
  1590. 17108 E_NOT_DIRECT_OR_INVERSE
  1591. The sign does not indicate an analysis or synthesis transform.
  1592.  
  1593. 17109 E_INT_OUT_OF_RANGE
  1594. Indicated integer is out of the range allowed.
  1595.  
  1596. 17110 E_NEGATIVE_OR_ZERO
  1597. A non-positive real number is required.
  1598.  
  1599. 17111 E_FREQ_OUT_OF_RANGE
  1600. The frequency is out of the required range.
  1601.  
  1602. 17112 E_NO_SUCH_FILTER_TYPE
  1603. No such filter type.
  1604.  
  1605. 17113 E_NO_SUCH_WINDOW_TYPE
  1606. No such window type.
  1607.  
  1608. 17114 E_ZERO_REAL
  1609. A real value of zero cannot be accepted.
  1610.  
  1611. 17115 E_ODD_LENGTH
  1612. Complex vector length is odd.
  1613.  
  1614. 17116 E_NOT_EQUAL_LENGTH
  1615. The two vector parameters must have equal lengths.
  1616.  
  1617. 17117 E_IO_NOT_MATCH
  1618. Output length is not twice that of the input length.
  1619.  
  1620. 17118 E_INCONSIST_LENGTH
  1621. The data length does not equal the vector dimension.
  1622.  
  1623. 17119 E_NULL_POINTER_ERR
  1624. Internal error. A null parameter pointer or parameter member pointer has been
  1625. detected.
  1626.  
  1627. 17120 E_NON_POSITIVE_LENGTH
  1628. The dimension of a vector parameter is invalid.
  1629.  
  1630. 17121 E_ALL_ZERO_ARRAY
  1631. All of the vector elements are zero.
  1632.  
  1633. 17122 E_NOT_ENOUGH_ZERO_PADDING
  1634. Need more zero padding for samples.
  1635.  
  1636. 17123 E_NOT_A_NUMBER
  1637. Input is not a number.
  1638.  
  1639. 17124 E_NONPOSITIVE
  1640. Magnitude of a complex number is non-positive.
  1641.  
  1642. 17130 E_FILTER_ORDER_TOO_BIG
  1643. Filter order is too large.
  1644.  
  1645. 17131 E_FILTER_ORDER_TOO_SMALL
  1646. Filter order is too small.
  1647.  
  1648. 17140 E_ZERO_LENGTH_WINDOW
  1649. A zero length window is unacceptable.
  1650.  
  1651. ******************************************************************************
  1652. *                                                                            *
  1653. * Please do not insert text after this comment!  It has a newline character  *
  1654. * after its last line, and some platforms require this at EOF.               *
  1655. *                                                                            *
  1656. ******************************************************************************
  1657.  
  1658.  
  1659. **********   Begin file sydInternal:HiQs:HiQv1.0.1d4:Errors:Errors_Joanna   **********
  1660.  
  1661.  
  1662. *
  1663. *@    File:            Errors_Joanna
  1664. *@
  1665. *@    Purpose:        HiQ Error text
  1666. *@
  1667. *@    Created:        1990
  1668. *@
  1669. *@    Authors            Initials        Involvement
  1670. *@    --------------    --------        -----------------------------------------------
  1671. *@ J. Rafalska        JR                created
  1672. *@
  1673. *@    Modification History
  1674. *@
  1675. *@    Date            Who    Comments                                                         S[DC]R#
  1676. *@    ---------    ---    ----------------------------------------------    --------
  1677. *@    04/03/92        DKR    Commented out scale line.
  1678. *@    06 Feb 91    SEG    Renamed from Errors<option-8>Joanna for 
  1679. *@                            portability, because most other platforms 
  1680. *@                            don't have the Mac option characters on their 
  1681. *@                            keyboards
  1682. *@    12 Feb 91    SEG    Added EOF comment with newline for portability.
  1683. *@ 27 Mar 91    JR   Changed text of 19001 error description.
  1684. *@ 10/02/91     JR   Changed text of 19001 error description. Added more
  1685. *@                   error #'s - related to updated IntegMultiple() files. 
  1686. *@    Keywords:    error
  1687. *
  1688. *---+----1----+----2----+----3----+----4----+----5----+----6----+----7----+----8
  1689.  
  1690. 19001 E_MAX_NO_SUBDIVISIONS
  1691. The maximum number of subintervals allowed has been exceeded. 
  1692.  
  1693. 19002 E_ROUNDOFF_ERROR
  1694. Roundoff error has been detected; the requested tolerance has not been achieved.
  1695. The error may have been underestimated.
  1696.  
  1697. 19003 E_BAD_INTEGRAND_BEHAVIOUR
  1698. The integrand behaves very poorly at one or more points of integration within
  1699. the interval.
  1700.  
  1701. 19004 E_NO_CONVERGENCE
  1702. Unable to converge to a solution. Roundoff error has been detected; the
  1703. requested tolerance has not been achieved. The return value is the best
  1704. which can be obtained.
  1705.  
  1706. 19005 E_POOR_DIVERGENCE
  1707. The integral is probably divergent or slowly convergent.
  1708.  
  1709. 19006 E_INVALID_INPUT
  1710. The requested absolute or relative tolerance must be nonnegative.
  1711.  
  1712. 19007 E_INPUT_PARAMETERS_ERROR
  1713. The maximum number of subintervals must be greater than or equal to 1.
  1714.         
  1715. 19008 E_INPUT_ERROR
  1716. The maximum number of subintervals must be greater than or equal to 2.  
  1717.         
  1718. 19009    E_POINT_BEYOND_BOUNDS
  1719. A break point was specified which lies outside the range of integration.
  1720.         
  1721. 19010    E_MAX_NO_STEPS
  1722. The maximum number of steps allowed has been exceeded. The integral may be too
  1723. difficult for this function to calculate.
  1724.  
  1725. 19011 E_INPUT_INVALID
  1726. The weight function indicator must equal 1 or 2, or the requested absolute
  1727. tolerance must be positive.
  1728.  
  1729. 19012 E_ABNORMAL_SUBINTEGRAL_TERMINATION
  1730. The computation of one or more subintegrals has terminated abnormally.
  1731.  
  1732. 19013 E_MAX_NO_OF_CYCLES
  1733. The maximum number of cycles allowed has been exceeded.
  1734.  
  1735. 19014 E_EXTRAP_TABLE_CONVERGENCE
  1736. The extrapolation table, constructed for convergence acceleration of the series
  1737. and formed by the integral contributions over the cycles, does not converge to
  1738. within the requested tolerance.
  1739.  
  1740. 19015 E_CYCLES_NUMBER
  1741. The maximum number of cycles must be greater than or equal to 3.
  1742.  
  1743. 19016 E_INPUT_IS_INVALID
  1744. The weight function indicator must equal 1 or 2, the requested absolute
  1745. tolerance must be positive, or the maximum number of cycles must be greater
  1746. than or equal to 3.
  1747.  
  1748. 19017 E_ENTRY_PARAMETERS_INVALID
  1749. The lower limit of integration must be greater than or equal to 1, a parameter
  1750. in the integrand weight function must be greater than or equal to 1, the maximum
  1751. number of subintervals must be greater than or equal to 1, or the maximum number
  1752. of Chebyshev moments must be greater than or equal to 1.
  1753.  
  1754. 19018 E_INTEGRAND_BAD_BEHAVIOUR
  1755. The integrand behaves very poorly within one or more of the cycles.
  1756.  
  1757. 19019 E_MAX_CYCLES_NO
  1758. Local integration difficulties occur that may be due to the subdivision limit,
  1759. roundoff error or poor integrand behavior. This may be a divergent or slowly
  1760. convergent integral; try splitting the integral. 
  1761.  
  1762. 19020 E_EXTRAP_TABLE_NONCONVERGENCE
  1763. The extrapolation table does not converge. The local integration difficulties
  1764. may be due to the subdivision limit, roundoff error or poor integrand behavior.
  1765. This may be a divergent or slowly convergent integral. 
  1766.  
  1767. 19021 E_THE_INPUT_INVALID
  1768. The weight function indicator must equal 1 or 2, the requested absolute or
  1769. relative tolerance must be nonnegative, or the maximum number of Chebyshev
  1770. moments must be greater than or equal to 1.
  1771.  
  1772. 19022 E_MAX_NO_OF_SUBDIVISIONS
  1773. The maximum number of subintervals allowed has been exceeded; increase the
  1774. maximum number of subintervals. If this yields no improvement, analyze the
  1775. integrand to determine local difficulties, then split the interval into subranges
  1776. and call the integrator for each subrange.
  1777.  
  1778. 19023 E_ROUNDOFF_ERROR_IS
  1779. Roundoff error has been detected; the requested tolerance has not been achieved.
  1780.  
  1781. 19024 E_INVALID_INPUT_DATA
  1782. The upper bound must be greater than the lower bound, the alpha or beta
  1783. parameter must be greater than -1, the weight function indicator must be
  1784. greater than or equal to 1 and less than or equal to 4, or the requested
  1785. absolute or relative tolerance must be nonnegative.
  1786.  
  1787. 19025 E_INVALID_ENTRY
  1788. The upper bound must be greater than the lower bound, the alpha or beta
  1789. parameter must be greater than -1, the weight function indicator must be
  1790. greater than or equal to 1 and less than or equal to 4, the requested absolute
  1791. or relative tolerance must be nonnegative, or the maximum number of subintervals
  1792. must be greater than or equal to 2.
  1793.  
  1794. 19026 E_INFINITE_BOUNDS
  1795. At least one side of the interval of integration is unbounded.
  1796.  
  1797. 19027 E_CHEB_MOMENTS
  1798. The maximum number of Chebyshev moments must be greater than or equal to 1.
  1799.         
  1800. 19028 E_INCORRECT_ENTRY_PARAMETERS
  1801. At least one side of the interval of integration is unbounded.
  1802.  
  1803. 19029 E_EPSILON_TABLE
  1804. The maximum number of epsilon table elements must be greater than or equal to 3.
  1805.  
  1806. 19030 E_BREAKPOINTS
  1807. The number of interior break points plus 2 must be greater than or equal to 2.
  1808.  
  1809. 19031 E_LIMIT
  1810. The maximum number of subintervals must be greater than or equal to the number
  1811. of interior break points plus 2.
  1812.  
  1813. 19032 E_POINTS_VECTOR_SIZE
  1814. The dimension of the break points vector must be greater than or equal to 2.
  1815.  
  1816. 19033 E_BOUND_ERROR
  1817. At least one side of the interval of integration is unbounded.
  1818.  
  1819. 19034 E_INPUT_BOUND
  1820. At least one bound of integration is invalid.
  1821.  
  1822. 19035 E_INFINITE_OMEGA
  1823. The omega parameter is an infinitely large positive or negative value.
  1824.  
  1825. 19099 E_UNKNOWN_ERROR
  1826. An unidentified error has occurred.
  1827.  
  1828. 19100 E_VECTOR_ALLOCATION
  1829. Internal memory allocation error - returns null pointer to real_big vector or 
  1830. there is a function evaluation error.
  1831.  
  1832. 19101 E_IVECTOR_ALLOCATION
  1833. Internal memory allocation error - returns null pointer to integer vector or 
  1834. there is a function evaluation error.
  1835.  
  1836. 19102 E_MATRIX_ALLOCATION
  1837. Internal memory allocation error - returns null pointer to real_big matrix or 
  1838. there is a function evaluation error.
  1839.  
  1840. 19103    E_IMATRIX_ALLOCATION
  1841. Internal memory allocation error - returns null pointer to integer matrix or 
  1842. there is a function evaluation error.
  1843.  
  1844. 19104    E_FUNCTION_VALUE
  1845. Function evaluation error. 
  1846.  
  1847. 19105 E_INDEX_BEYOND_BOUNDS
  1848. STRING  STRING  INT32
  1849. %s index %s = %s. The index is beyond bounds. The result is not valid.
  1850.  
  1851. 19106 E_CONSTRUCT_VECTOR
  1852. Internal error. Vector construction error.
  1853.  
  1854. 19107 E_POSITION_TO_INDEX
  1855. Internal error. Position to index conversion error.
  1856.  
  1857. 19108 E_ELLIP_ONE_PARAMETER_K
  1858. Domain error for the Elliptic Integral of the First Kind, el1(p,k): 0 <= k <= 1.
  1859.  
  1860. 19109 E_ELLIPTIC_ONE_INFINITY
  1861. The Elliptic Integral of the First Kind, el1(p,k), cannot be computed at p =
  1862. <pi>/2 or at k = 1.
  1863.  
  1864. 19110 E_ELLIP_TWO_PARAMETER_K
  1865. Domain error for the Elliptic Integral of the Second Kind, el2(p,k): 0 <= k <= 1.
  1866.  
  1867. 19111 E_ELLIPTIC_COM_ONE_DOMAIN 
  1868. Domain error for the comel1(k) function: k < 0 or k > 1.
  1869.  
  1870. 19112 E_ELLIP_COM_ONE_SINGULARITY
  1871. Singularity occurs at k = 0 in the comel1(k) function.
  1872.  
  1873. 19113 E_ELLIPTIC_COM_TWO_DOMAIN
  1874. Domain error for the comel2(k) function: k < 0 or k > 1.
  1875.  
  1876. 19114 E_AIRY_DOMAIN
  1877. The airy function cannot be computed for x > 103.892.
  1878.  
  1879. 19115 E_JACOBI_DOMAIN
  1880. Domain error in a Jacobi elliptic function: k < 0.0 or k > 1.0.
  1881.  
  1882. 19116 E_JACOBI_OVERFLOW
  1883. Numerical overflow for a Jacobi elliptic function. The results are not reliable.
  1884.  
  1885. 19117 E_EXPONENTIAL_DOMAIN
  1886. Domain error for the expi(n,x) function: n < 0 or x < 0.
  1887.  
  1888. 19118 E_EXPONENTIAL_SINGULARITY
  1889. Singularity occurs in the expi(n,x) function: the parameter n < 2 when the
  1890. argument x = 0.
  1891.  
  1892. 19119 E_NEGBINDIST_DOMAIN
  1893. Domain error for the negbindist(k,n,p) function: p < 0 or p > 1 or k < 0.
  1894.  
  1895. 19120 E_BINDIST_DOMAIN
  1896. Domain error for the bindist(k,n,p) function: k < 0 or n < k.
  1897.  
  1898. 19121 E_BINDIST_DOMAIN_P
  1899. Domain error for the bindist(k,n,p) function: p < 0 or p > 1.
  1900.  
  1901. 19122 E_LNGAMMA_OVERFLOW
  1902. Overflow occurs in the lngamma(x) function:
  1903.  
  1904. 19123 E_LNGAMMA_OVERFLOW_Y_ZERO
  1905. Overflow occurs in the lngamma(x) function.
  1906.  
  1907. 19124 E_LNGAMMA_OVERFLOW_X_ZERO
  1908. Overflow occurs in the lngamma(x) function: x = 0.
  1909.  
  1910. 19125 E_LNGAMMA_OVERFLOW_MAXLOG
  1911. Overflow occurs in the lngamma(x) function: x > MAXLOG.
  1912.  
  1913. 19126 E_IBETA_DOMAIN
  1914. Domain error for the ibeta(a,x,y) function: x <= 0 or y <= 0 or a lies
  1915. outside the interval [0,1].
  1916.  
  1917. 19127 E_IBETA_UNDERFLOW
  1918. Underflow in the ibeta(a,x,y) function: return value set to 0.
  1919.  
  1920. 19128 E_LNFACT_DOMAIN
  1921. Domain error for the lnfact(n) function: n < 0.
  1922.  
  1923. 19129 E_FDIST_DOMAIN
  1924. Domain error for the fdist(f,n1,n2) function; at least one of the following:
  1925. n1 < 1 or n2 < 1 or f < 0.
  1926.  
  1927. 19130 E_STUDENT_DOMAIN_N
  1928. Domain error for the student(t,n) function: n <= 0.
  1929.  
  1930. 19131 E_STUDENT_DOMAIN_T
  1931. Domain error for the student(t,n) function: t < 0.
  1932.  
  1933. 19132 E_IGAMMA_UNDERFLOW
  1934. Underflow error for the igamma(a,x) function.
  1935.  
  1936. 19133    E_POI_DOMAIN
  1937. Domain error for the poi(l,k) function: l < 0 or k <= 0.0.
  1938.  
  1939. 19134    E_CHISQ_DOMAIN
  1940. Domain error for the chisq(n,x) function: n < 1 or x < 0.
  1941.  
  1942. 19135    E_GAMMADIST_DOMAIN
  1943. Domain error for the gammadist(a,b,x) function: x < 0.0.
  1944.  
  1945. 19136    E_COMCHISQ_DOMAIN
  1946. Domain error for the comchisq(n,x) function: n < 1 or x < 0.
  1947.  
  1948. 19137 E_FHYPER_OVERFLOW
  1949. Overflow occurs in the fhyper(a,b,c,x) function.
  1950.  
  1951. 19138 E_FHYPER_OVERFLOW_AX
  1952. Overflow occurs in the fhyper(a,b,c,x) function.
  1953.  
  1954. 19139 E_FHYPER_OVERFLOW_D
  1955. Overflow occurs in the fhyper(a,b,c,x) function.
  1956.  
  1957. 19140 E_FHYPER_OVERFLOW_DX
  1958. Overflow occurs in the fhyper(a,b,c,x) function.
  1959.  
  1960. 19141 E_MHYPER_OVERFLOW
  1961. Loss of precision occurs in the mhyper(a,b,x) function.
  1962.  
  1963. 19142 E_MSERIES_SINGULARITY
  1964. Singularity occurs in the power series expansion of the mseries(a,b,x)
  1965. function.
  1966.  
  1967. 19143 E_TWOFO_OVERFLOW
  1968. Overflow occurs in the asymptotic series expansion for the mseries(a,b,x)
  1969. function.
  1970.  
  1971. 19144 E_DILOG_DOMAIN
  1972. Domain error for the dilogarithm function: x < 0.0.
  1973.  
  1974. 19145 E_ZETA_OVERFLOW
  1975. The zeta(x) function cannot be computed reliably for x < -30.8148.
  1976.  
  1977. 19146 E_ZETA_DIVERGENCE
  1978. The zeta(x) function diverges at x = 1.
  1979.  
  1980. 19147 E_ZETA_SINGULARITY
  1981. Singularity occurs at x = 1.0 in the zeta(x) function.
  1982.  
  1983. 19148 E_DOMAIN_GENERAL_BESSEL
  1984. Domain error for the jn(n,x) function: n is noninteger and less than -200.
  1985.  
  1986. 19149 E_UNDERFLOW_GENERAL_BESSEL
  1987. Underflow occurs in the jn(n,x) function: the return value is set to zero.
  1988.  
  1989. 19150 E_PRECISION_GENERAL_BESSEL
  1990. Loss of precision occurs in the jn(n,x) function.
  1991.  
  1992. 19151 E_OVERFLOW_GENERAL_BESSEL
  1993. Overflow occurs in the jn(n,x) function.
  1994.  
  1995. 19152 E_DOMAIN_AIRYTWO
  1996. Domain error for the bi(x) function: argument is too large for evaluation.
  1997.  
  1998. 19153 E_DOMAIN_Y_SPHER_BESSEL
  1999. Domain error for the ys(n,x) function: x = 0.
  2000.  
  2001. 19154 E_DOMAIN_J_SPHER_BESSEL
  2002. Domain error for the js(n,x) function: n is noninteger and less than or equal
  2003. to -200.
  2004.  
  2005. 19155 E_PRECISION_GENERAL_BESSEL_Y
  2006. Loss of precision occurs in the yn(n,x) function.
  2007.  
  2008. 19156 E_DOMAIN_MODIFIED_BESSEL_I
  2009. Domain error for the in(n,x) function: n is noninteger and less than or equal
  2010. to -200.
  2011.  
  2012. 19157 E_OVERFLOW_MODIFIED_BESSEL_I
  2013. Overflow occurs the in(n,x) function.
  2014.  
  2015. 19158 E_BOUND_SINGULARITY_FOURIER
  2016. STRING  REAL_BIG
  2017. %s = %s. The zero bound has been replaced with a small value to avoid a
  2018. singularity on the integral bound.
  2019.  
  2020. 19159 E_DOMAIN_UHYPER
  2021. Domain error for the uhyper(a,b,x) function: x < 0.0.
  2022.  
  2023. 19160 E_NOT_FOR_INTEGER
  2024. The algorithm is not implemented for integer b in the uhyper(a,b,x) function.
  2025.  
  2026. 19161 E_PRECISION_UHYPER
  2027. Loss of precision occurs in the uhyper(a,b,x) function.
  2028.  
  2029. 19162 E_BESSEL_Y_SINGULARITY
  2030. Singularity occurs for x <= 0 in the yn(n,x) function.
  2031.  
  2032. 19163 E_DOMAIN_GENERAL_BESSEL_Y
  2033. Domain error for the yn(n,x) function: n is noninteger and less than -200.
  2034.  
  2035. 19164 E_SIN_ZERO
  2036. Attempt to divide by zero.
  2037.  
  2038. 19165 E_POW_DOMAIN
  2039. The function struve(v,x) cannot be computed when x = 0.0 and v < 0.0.
  2040.  
  2041. 19166 E_INT_DIMENSION_BIG
  2042. The dimension of the integral must be less than or equal to 30.
  2043.  
  2044. 19167 E_INT_DIMENSION_NEGATIVE
  2045. The dimension of the integral must be nonnegative.
  2046.  
  2047. 19168 E_INT_TOLERANCE_NEGATIVE
  2048. The requested error tolerance must be nonnegative.
  2049.  
  2050. 19169 E_MSERIES_OVERFLOW
  2051. Overflow occurs in the mseries(a,b,x) function.
  2052.  
  2053. 19170 E_ELLIP_ONE_PARAMETER_P
  2054. Domain error for the Elliptic Integral of the First Kind, el1(p,k): either
  2055. p < -<pi>/2 or p > <pi>/2.
  2056.  
  2057. 19171 E_GENERAL_BESSEL_DEGREE
  2058. The value of the degree of the Bessel Function exceeds the range
  2059. of an integer number.
  2060.  
  2061. ******************************************************************************
  2062. *                                                                            *
  2063. * Please do not insert text after this comment!  It has a newline character  *
  2064. * after its last line, and some platforms require this at EOF.               *
  2065. *                                                                            *
  2066. ******************************************************************************
  2067.  
  2068.  
  2069. **********   Begin file sydInternal:HiQs:HiQv1.0.1d4:Errors:Errors_Tri   **********
  2070.  
  2071.  
  2072.  *@
  2073.  *@    File:            Errors_Tri
  2074.  *@
  2075.  *@    Purpose:        HiQ Errors text
  2076.  *@
  2077.  *@    Created:        March 30, 1992
  2078.  *@
  2079.  *@    Keywords:    Error
  2080.  *@
  2081.  *@    Authors            Initials        Involvement
  2082.  *@    --------------    --------        -----------------------------------------------
  2083.  *@    D. K. Russell    DKR            created
  2084.  *@
  2085.  *@    Modification History
  2086.  *@
  2087.  *@    Date            Who    Comments                                                         S[DC]R#
  2088.  *@    ---------    ---    ----------------------------------------------    --------
  2089.  *@
  2090.  *@
  2091.  
  2092. 21000 TDD_ERROR_CODE_BEGINNING
  2093. Beginning of Tri Di Do's error file.
  2094.  
  2095.  
  2096.  
  2097. **********   Begin file sydInternal:HiQs:HiQv1.0.1d4:Errors:Errors_Darrin   **********
  2098.  
  2099.  
  2100.  *@
  2101.  *@    File:            Errors_Darrin
  2102.  *@
  2103.  *@    Purpose:        HiQ Errors text
  2104.  *@
  2105.  *@    Created:        1990
  2106.  *@
  2107.  *@    Keywords:    Error
  2108.  *@
  2109.  *@    Authors            Initials        Involvement
  2110.  *@    --------------    --------        -----------------------------------------------
  2111.  *@    D. K. Russell    DKR            created
  2112.  *@
  2113.  *@    Modification History
  2114.  *@
  2115.  *@    Date            Who    Comments                                                         S[DC]R#
  2116.  *@    ---------    ---    ----------------------------------------------    --------
  2117.  *@    06 Feb 91    SEG    Renamed from Errors<option-8>Darrin for 
  2118.  *@                            portability, because most other platforms 
  2119.  *@                            don't have the Mac option characters on their 
  2120.  *@                            keyboards.
  2121.  *@
  2122.  *@
  2123.  
  2124. 23000 DKR_ERROR_CODE_BEGINNING
  2125.  
  2126.  
  2127. 23001 E_UNIDENTIFIED_ERROR
  2128. An unidentified error has occurred.
  2129.  
  2130. 23002 E_SMALL_RELATIVE_ERROR
  2131. REAL_BIG REAL_BIG
  2132. The integration was discontinued because the relative error tolerance is too
  2133. small. Adjust the relative error tolerance and continue? relerr = %s, abserr =
  2134. %s.
  2135.  
  2136. 23003 E_TOO_MANY_STEPS
  2137. The integration was discontinued because more than 3000 derivative evaluations
  2138. (approximately 500 steps) have been performed; this may indicate the system of
  2139. equations is stiff. Continue?
  2140.  
  2141. 23004 E_VANISHING_SOLUTION
  2142. REAL_BIG REAL_BIG
  2143. The integration was discontinued because the solution vanished, making a pure
  2144. relative error test impossible. Set the absolute error tolerance to 1.0e-9 and
  2145. continue? relerr = %s, abserr = %s.
  2146.  
  2147. 23005 E_TOO_MUCH_ACCURACY
  2148. REAL_BIG REAL_BIG
  2149. The integration was discontinued because the requested accuracy could not be 
  2150. achieved using the smallest allowable stepsize; the solution changes rapidly, 
  2151. which may indicate the presence of a singularity. Multiply the relative error
  2152. tolerance by 10 and continue? relerr = %s, abserr = %s.
  2153.  
  2154. 23006 E_RKF_INEFFICIENT
  2155. The Runge-Kutta-Fehlberg method may be inefficient for solving this problem; the
  2156. large amount of output is restricting the natural stepsize choice. Continue?
  2157.  
  2158. 23007 E_TOO_MANY_ERROR_ITEMS
  2159. Attempt to create more error data items than permitted, or attempt to pass an
  2160. excessive number of error data items while setting an error message. (Internal)
  2161.  
  2162. 23008 E_INVALID_ERROR_TYPE
  2163. Attempt to create an error data item with an undefined type. (Internal)
  2164.  
  2165. 23009 E_NULL_POINTER
  2166. STRING
  2167. Internal error. NULL %s pointer. Please document this error message and any
  2168. relevant information about the circumstances which may have caused it, then
  2169. call Bimillennium technical support at (800)488-8662.
  2170.  
  2171. 23010 E_NULL_PARAMETER
  2172. STRING
  2173. Internal error. NULL %s parameter.
  2174.  
  2175. 23011 E_INVALID_PARAMETER
  2176. Invalid parameter in the parameter list.
  2177.  
  2178. 23012 E_INVALID_DIMENSION
  2179. STRING
  2180. The dimension of %s is invalid.
  2181.  
  2182. 23013 E_INVALID_INDEX
  2183. STRING
  2184. The value of an index parameter is invalid or is incompatible with the dimension
  2185. of %s.
  2186.  
  2187. 23014 E_MORE_THAN_ONE_VECTOR
  2188. STRING
  2189. %s consists of more than one vector.
  2190.  
  2191. 23015 E_INVALID_NUMBER
  2192. STRING STRING
  2193. Invalid number of %s; must be %s.
  2194.  
  2195. 23016 E_INCOMPATIBLE_DIMENSION
  2196. STRING STRING
  2197. The dimension of %s is incompatible with the dimension of %s.
  2198.  
  2199. 23017 E_DIMENSION_EXCEEDED
  2200. STRING STRING
  2201. The dimension of %s exceeds the dimension of %s.
  2202.  
  2203. 23018 E_MATRIX_NOT_SQUARE
  2204. STRING
  2205. %s is not a square matrix.
  2206.  
  2207. 23019 E_SINGULAR_MATRIX
  2208. STRING
  2209. %s is a numerically singular matrix.
  2210.  
  2211. 23020 E_SECOND_INDICES
  2212. The second element index parameters must both be zero or both be greater than
  2213. zero.
  2214.  
  2215. 23021 E_DIFFERENT_DIMENSION
  2216. STRING STRING
  2217. The dimension of %s is incompatible with the dimension of %s.
  2218.  
  2219. 23022 E_INVALID_SUBDIAGONAL
  2220. STRING
  2221. Invalid subdiagonal for %s.
  2222.  
  2223. 23023 E_DOMAIN_INVALID
  2224. STRING
  2225. Domain error for %s.
  2226.  
  2227. 23024 E_RANGE_EXCEEDED
  2228. STRING
  2229. The range has been exceeded for %s.
  2230.  
  2231. 23025 E_RANGE_OVERFLOW
  2232. STRING
  2233. The range has overflowed for %s.
  2234.  
  2235. 23026 E_RANGE_UNDERFLOW
  2236. STRING
  2237. The range has underflowed for %s.
  2238.  
  2239. 23027 E_PRECISION_LOSS
  2240. The guaranteed precision range of the function has been exceeded for the value
  2241. of the parameter. Try using the "x" version of the function.
  2242.  
  2243. 23028 E_FUNCTION_PRECISION
  2244. The guaranteed precision range of a function within the function has been exceeded
  2245. for the value of the parameter. Try using the "x" version of the function.
  2246.  
  2247. 23029 E_INVALID_POLYNOMIAL
  2248. The degree of the polynomial is invalid.
  2249.  
  2250. 23030 E_NEGATIVE_TOLERANCE
  2251. A negative tolerance was entered in the parameter list; it must be nonnegative.
  2252.  
  2253. 23031 E_ITERATIONS_EXCEEDED
  2254. INT32
  2255. %s iterations have been exceeded.
  2256.  
  2257. 23032 E_INVALID_ARGUMENT
  2258. STRING STRING
  2259. %s parameter is invalid for %s.
  2260.  
  2261. 23033 E_INVALID_STRING_ARGUMENT
  2262. STRING STRING
  2263. %s parameter is invalid for %s.
  2264.  
  2265. 23034 E_INVALID_INT16_ARGUMENT
  2266. STRING INT16
  2267. %s parameter is invalid for %s.
  2268.  
  2269. 23035 E_INVALID_INT32_ARGUMENT
  2270. STRING INT32
  2271. %s parameter is invalid for %s.
  2272.  
  2273. 23036 E_INVALID_REAL32_ARGUMENT
  2274. STRING REAL32
  2275. %s parameter is invalid for %s.
  2276.  
  2277. 23037 E_INVALID_REAL64_ARGUMENT
  2278. STRING REAL64
  2279. %s parameter is invalid for %s.
  2280.  
  2281. 23038 E_INVALID_REAL_BIG_ARGUMENT
  2282. STRING REAL_BIG
  2283. %s parameter is invalid for %s.
  2284.  
  2285. 23039 E_INVALID_REAL_FAST_ARGUMENT
  2286. STRING REAL_FAST
  2287. %s parameter is invalid for %s.
  2288.  
  2289. 23040 E_INDICES_OUT_OF_ORDER
  2290. A pair of starting and ending dimension indices are invalid or out of order.
  2291.  
  2292. 23041 E_SYSTEM_DIVERGENT
  2293. INT32
  2294. The system of equations does not have a convergent solution in %s iterations.
  2295.  
  2296. 23042 E_FUNCTION_SINGULAR
  2297. A function singularity has been detected.
  2298.  
  2299. 23043 E_IEEE_RANGE_EXCEEDED
  2300. STRING
  2301. The range has been exceeded for %s; 16 decimal digit precision is not guaranteed.
  2302.  
  2303. 23044 E_IEEE_RANGE_OVERFLOW
  2304. STRING
  2305. The range has overflowed for %s; 16 decimal digit precision is not guaranteed.
  2306.  
  2307. 23045 E_IEEE_RANGE_UNDERFLOW
  2308. STRING
  2309. The range has underflowed for %s; 16 decimal digit precision is not guaranteed.
  2310.  
  2311. 23046 E_STEPSIZE_ZERO
  2312. An invalid stepsize has been entered in the parameter list. Since the initial
  2313. and final point of integration values are not equal, the stepsize must be
  2314. non-zero.
  2315.  
  2316. 23047 E_STEPSIZE_DIRECTION
  2317. An invalid stepsize has been entered in the parameter list. The sign of the
  2318. step must consistent with the direction of integration.
  2319.  
  2320. 23048 E_STEPSIZE_TOO_LARGE
  2321. An invalid stepsize has been entered in the parameter list. The magnitude of
  2322. the stepsize exceeds the length between the initial integration value and the
  2323. final integration value.
  2324.  
  2325. 23049 E_DIFFERENT_VALUES
  2326. STRING STRING
  2327. %s must equal %s.
  2328.  
  2329. 23050 E_INVALID_STATUS
  2330. STRING STRING
  2331. Internal error. Invalid status indicator %s; must be %s. Please document this
  2332. error message and any relevant information about the circumstances which may
  2333. have caused it, then call Bimillennium technical support at (800)488-8662.
  2334.  
  2335. 23051 E_SYSTEM_INSOLUBLE
  2336. Cannot compute a solution for the given system of equations due to a singularity
  2337. in the Jacobian matrix. The initial estimate of the solution may be poor or the
  2338. Jacobian system of equations may have no real solution.
  2339.  
  2340. 23052 E_BACKWARD_INTEGRATION
  2341. Cannot integrate in the backward direction. Exchange the values of the initial
  2342. and final points of integration or change the sign (direction) of the stepsize.
  2343.  
  2344. 23053 E_EXTRA_INFO
  2345. STRING
  2346. %s.
  2347.  
  2348. 23054 E_ZERO_DIVIDE
  2349. An attempt was made to divide by zero.
  2350.  
  2351. 23055 E_NOT_A_FUNCTION_SYMBOL
  2352. Invalid entry in a function parameter list; parameter must be a function.
  2353.  
  2354. 23056 E_INVALID_ARGUMENT_LIST
  2355. Invalid entry in a function parameter list; function parameter has the wrong
  2356. the wrong number of arguments.
  2357.  
  2358. 23057 E_NO_FUNCTION_INSTALLED
  2359. An attempt was made to pass a non-existent function as a function parameter.
  2360.  
  2361. 23058 E_INCORRECT_RETURN_TYPE
  2362. Invalid entry in a function parameter list; the return type of the function
  2363. parameter is incorrect.
  2364.  
  2365. 23059 E_RETURN_VALUE_DIMENSION
  2366. The dimension of a function return value is invalid.
  2367.  
  2368. 23060 E_NEGATIVE_CONSTRAINTS
  2369. The constraint parameters must be non-negative.
  2370.  
  2371. 23061 E_INCORRECT_CONSTRAINTS
  2372. An incorrect number of constraints were specified.
  2373.  
  2374. 23062    E_INVALID_TABLEAU
  2375. Invalid simplex tableau; the constraint constants must be non-negative.
  2376.  
  2377. 23063 E_SIMPLEX_INSOLUBLE
  2378. No solution can be found which satisfies the supplied constraints.
  2379.  
  2380. 23064    E_FUNCTION_UNBOUNDED
  2381. The objective function is unbounded.
  2382.  
  2383. 23065 E_INVALID_STEP_OR_END_POINTS
  2384. Invalid step direction or selection of end points.
  2385.  
  2386. 23066 E_MATRIX_NOT_TRIANGULAR
  2387. STRING
  2388. A vector parameter does not represent a triangular matrix.
  2389.  
  2390. 23067 E_INVALID_FLAG
  2391. STRING
  2392. Invalid %s parameter.
  2393.  
  2394. 23068 E_FIRST_ELEMENT_NOT_ONE
  2395. STRING
  2396. The first element of %s must equal one.
  2397.  
  2398. 23069 E_INVALID_RESULTS
  2399. STRING
  2400. The function does not return a valid result for %s.
  2401.  
  2402. 23070 E_ZERO_PARAMETER
  2403. Invalid parameter value of zero.
  2404.  
  2405. 23071 E_INVALID_BIF_INDEX
  2406. Bad BIF setup line. An invalid BIF index was read; the index is negative or
  2407. greater than the number of BIFs installed. (Internal error.)
  2408.  
  2409. 23072 E_NULL_PARAMETER_POINTER
  2410. Internal error. Null parameter pointer.
  2411.  
  2412. 23073 E_NULL_PARAMETER_MEMBER_POINTER
  2413. Internal error. Null parameter member pointer.
  2414.  
  2415. 23074 E_TYPE_RANGE
  2416. The range of a parameter or variable has been exceeded.
  2417.  
  2418. 23075 E_ARGUMENT_ACCESS
  2419. STRING
  2420. At least one parameter in the parameter list is locked or in use and cannot be
  2421. changed, or has changed but cannot be unlocked.
  2422.  
  2423. 23076 E_MATRIX_SIZE
  2424. INT32
  2425. The maximum number of elements for a matrix has been exceeded; the number of
  2426. elements must not exceed %s.
  2427.  
  2428. 23077 E_NONNEGATIVE_PARAMETERS
  2429. Parameters of the function must be less than zero.
  2430.  
  2431. 23078 E_POSITIVE_PARAMETERS
  2432. Parameters of the function must be less than or equal to zero.
  2433.  
  2434. 23079 E_NEGATIVE_PARAMETERS
  2435. Parameters of the function must be greater than or equal to zero.
  2436.  
  2437. 23080 E_NONPOSITIVE_PARAMETERS
  2438. Parameters of the function must be greater than zero.
  2439.  
  2440. 23081 E_NONNEGATIVE_ELEMENTS
  2441. STRING
  2442. Elements of %s must be less than zero.
  2443.  
  2444. 23082 E_POSITIVE_ELEMENTS
  2445. STRING
  2446. Elements of %s must be less than or equal to zero.
  2447.  
  2448. 23083 E_NEGATIVE_ELEMENTS
  2449. STRING
  2450. Elements of %s must be greater than or equal to zero.
  2451.  
  2452. 23084 E_NONPOSITIVE_ELEMENTS
  2453. STRING
  2454. Elements of %s must be greater than zero.
  2455.  
  2456. 23085 E_ZERO_ELEMENTS
  2457. STRING
  2458. Elements of %s must be non-zero.
  2459.  
  2460. 23086 E_STEPSIZE_NONPOSITIVE
  2461. An invalid stepsize has been entered in the parameter list. The sign of the
  2462. step must be positive.
  2463.  
  2464. 23087 E_CONVERGENCE_RADIUS
  2465. The value of an entered parameter lies outside of the range of convergence.
  2466.  
  2467. 23088 E_FUNCTION_IMPLEMENTATION
  2468. This function is not currently implemented.
  2469.  
  2470. 23089 E_INVALID_BASE
  2471. The base parameter must not equal 1.
  2472.  
  2473. 23090 E_DOMAIN_GAMMA
  2474. Singularity in the gamma(x) function: x is an integer value less than or equal
  2475. to zero.
  2476.  
  2477. 23091 E_OVERFLOW_GAMMA
  2478. Overflow occurs in the gamma(x) function.
  2479.  
  2480. 23092 E_NAN_ARGUMENT
  2481. NaN is not a valid function parameter.
  2482.  
  2483. 23093 E_RESULT_PRECISION
  2484. The results of this function may be imprecise, but accurate to machine precision,
  2485. due to the magnitude of the function's parameters, the inexact representation of
  2486. floating-point values, and imprecision in the computer's arithmetic.
  2487.  
  2488.  
  2489. **********   Begin file sydInternal:HiQs:HiQv1.0.1d4:Errors:Errors_David   **********
  2490.  
  2491.  
  2492. *
  2493. *@    File:            Errors_David
  2494. *@
  2495. *@    Purpose:        HiQ Error text
  2496. *@
  2497. *@    Created:        1990
  2498. *@
  2499. *@    Authors            Initials        Involvement
  2500. *@    --------------    --------        -----------------------------------------------
  2501. *@    
  2502. *@
  2503. *@    Modification History
  2504. *@
  2505. *@    Date            Who    Comments                                                         S[DC]R#
  2506. *@    ---------    ---    ----------------------------------------------    --------
  2507. *@    06 Feb 91    SEG    Renamed from Errors<option-8>David for 
  2508. *@                            portability, because most other platforms 
  2509. *@                            don't have the Mac option characters on their 
  2510. *@                            keyboards
  2511. *@
  2512. *@    Keywords:    error
  2513. *
  2514.  
  2515.  
  2516. ******************************************************************************
  2517. *                                                                            *
  2518. * Please do not insert text after this comment!  It has a newline character  *
  2519. * after its last line, and some platforms require this at EOF.               *
  2520. *                                                                            *
  2521. ******************************************************************************
  2522.  
  2523.  
  2524. **********   Begin file sydInternal:HiQs:HiQv1.0.1d4:Errors:Errors_Cindy   **********
  2525.  
  2526.  
  2527. *******************************************************************************
  2528. *
  2529. *        Copyright (c) 1991, Bimillennium Corporation.  All rights reserved.
  2530. *
  2531. *        Purpose:        HiQ errors file.
  2532. *    
  2533. *        Notes:        
  2534. *    
  2535. *        Created:        3/19/91
  2536. *
  2537. *        Who                    Initials    Involvement
  2538. *        -----------------    --------    -----------------------------------------------
  2539. *        D. M. Park            DMP        Original Code
  2540. *    
  2541. *    
  2542. *                    Modification History (Latest modification first)
  2543. *    
  2544. *        Date         Who    Version    Comments
  2545. *        -----------    -----    --------    -----------------------------------------------
  2546. *
  2547. *             1/28/92        DMP     <2>        Reworded some error messages.
  2548. *             1/16/92        DMP    <1+>        
  2549. *             6/27/91        DMP     <1>        first checked in
  2550. *        Keywords:    Portable, Standard Errors
  2551. *
  2552. ******************************************************************************
  2553. 27001    E_INVALID_TYPE_FOR_HDF_EXPORT
  2554. IO error.  Can't export this symbol type to an HDF file.
  2555.  
  2556. 27002 E_DFSDSETTYPE_FAILED
  2557. IO error.  HDF command DFSDsettype failed.
  2558.  
  2559. 27003 E_DFSDCLEAR_FAILED
  2560. IO error.  HDF command DFSDclear failed.
  2561.  
  2562. 27004 E_DFSDSETDIMS_FAILED
  2563. IO error.  HDF command DFSDsetdims failed.
  2564.  
  2565. 27005 E_DFSDSETDIMSTRS_FAILED
  2566. IO error.  Command DFSDsetdimstrs failed.
  2567.  
  2568. 27006 E_DFSDSETDIMSCL_FAILED
  2569. IO error.  Command DFSDsetdimscale failed.
  2570.  
  2571. 27007 E_DFSDSETDATASTR_FAILED
  2572. IO error.  Command DFSDsetdatastrs failed.
  2573.  
  2574. 27008 E_DFSDPUTDATA_FAILED
  2575. IO error.  HDF command DFSDputdata failed.
  2576.  
  2577. 27009 E_DFSDGETDATA_FAILED
  2578. IO error.  HDF command DFSDgetdata failed.
  2579.  
  2580. 27010 E_DFACCESS_FAILED
  2581. IO error.  Could not find the object requested on disk.
  2582.  
  2583. 27011 E_DFWRITE_FAILED
  2584. IO error. An error occured during a write to disk. You may be low on disk
  2585. space.
  2586.  
  2587. 27012 E_DFUPDATE_FAILED
  2588. IO error. An error occured during a write to disk. You may be low on disk
  2589. space.
  2590.  
  2591. 27013 E_DFREAD_FAILED
  2592. IO error. An error occured while reading from disk.
  2593.  
  2594.  
  2595.  
  2596.